@font-face {
  font-family: "Font Awesome 5 Free 400";
  src: url('../fonts/Font-Awesome-5-Free-Regular-400.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Font Awesome 5 Free Solid 900";
  src: url('../fonts/Font-Awesome-5-Free-Solid-900.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Font Awesome 5 Brands 400";
  src: url('../fonts/Font-Awesome-5-Brands-Regular-400.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --light-grey: #f4f4f4;
  --main: #0517e0;
  --white: white;
  --dark-slate-grey: #434343;
  --dark-grey: #a1a1a1;
  --blue-light: #00054257;
  --cta-button: #ccd0ff;
}

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

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

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

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

body {
  color: #333;
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

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

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 120%;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 120%;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 140%;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 130%;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 130%;
}

p {
  margin-bottom: 0;
}

a {
  color: #333;
  text-decoration: underline;
}

ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1.25rem;
}

li {
  margin-bottom: .5rem;
  padding-left: .5rem;
}

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

blockquote {
  border-left: 5px solid #e2e2e2;
}

figure {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

.navbar-logo {
  padding-top: 0;
  padding-bottom: 0;
  transition: transform .3s cubic-bezier(.165, .84, .44, 1);
}

.navbar-logo:hover {
  transform: scale(.9);
}

.navbar-logo-image {
  width: 200px;
  padding-top: 0;
  padding-bottom: 0;
}

.styleguide-menu-toggle {
  display: none;
}

.styleguide-navbar-overlay {
  z-index: 10;
  opacity: .5;
  background-color: #222;
  display: none;
  position: fixed;
  inset: 0%;
}

.label-link {
  border: 1px solid var(--light-grey);
  color: #242424;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  align-items: center;
  padding: .4rem .5rem;
  font-size: 13px;
  font-weight: 400;
  line-height: 110%;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.label-link.muted {
  background-color: #f8f8f8;
}

.label-link.primary {
  color: #fff;
  background-color: #222;
}

.label-link.secondary {
  background-color: var(--main);
  color: var(--white);
}

.button-inner {
  z-index: 6;
  flex-direction: column;
  height: 1rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.label-inner {
  height: 15px;
  overflow: hidden;
}

.subnav-item {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-direction: column;
  margin-bottom: 0;
  padding-left: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 150%;
  display: flex;
}

.subnav-item.w--current {
  text-decoration: underline;
}

.button {
  color: #222;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: .75rem 1rem;
  font-size: 13px;
  font-weight: 400;
  line-height: 110%;
  text-decoration: none;
  transition: background-color .3s, border .3s;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.button:hover {
  background-color: var(--light-grey);
}

.button.primary:hover {
  background-color: var(--dark-slate-grey);
  border-color: #121416;
}

.button.primary._404 {
  padding: 1.5rem;
}

.button.primary._100 {
  width: 100%;
}

.button.muted {
  background-color: #f8f8f8;
}

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

.button.default:hover {
  border-color: #121416;
}

.button.default.large {
  background-color: #0517e0;
  height: 100%;
  padding: .9rem;
  transition: background-color .3s;
  display: flex;
}

.button.default.large:hover {
  background-color: var(--dark-slate-grey);
}

.button.large {
  width: 100%;
  padding: 2rem 1.5rem;
  transition: background-color .3s;
}

.button.large:hover {
  background-color: var(--light-grey);
}

.button.secondary {
  background-color: var(--dark-slate-grey);
  color: var(--white);
}

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

.button.primary {
  background-color: var(--dark-slate-grey);
  color: #fff;
}

.button.primary:hover, .button.primary.w--current:hover {
  background-color: var(--main);
}

.button.primary.large {
  transition: background-color .3s;
}

.button.primary.large:hover {
  background-color: var(--dark-slate-grey);
}

.button-inner-text {
  letter-spacing: 1px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

.button-text-line {
  background-color: #222;
  width: 100%;
  height: 1px;
  margin-top: 2px;
}

.button-text {
  color: #222;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transform: translate(0);
}

.nav-item {
  display: flex;
}

.button-inner-text-hover {
  justify-content: center;
  align-items: center;
  font-weight: 600;
}

.button-text-text {
  white-space: nowrap;
}

.overflow-hidden {
  overflow: hidden;
}

.hide {
  display: none;
}

.padding-horizontal {
  padding-top: 0;
  padding-bottom: 0;
}

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

.margin-huge {
  margin: 6rem;
}

.max-width-large {
  width: 100%;
  max-width: 40rem;
}

.max-width-large._80 {
  max-width: 80rem;
}

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

.padding-xxsmall {
  padding: .25rem;
}

.margin-large {
  margin: 3rem;
}

.show-mobile-landscape {
  display: none;
}

.margin-vertical {
  margin-left: 0;
  margin-right: 0;
}

.padding-huge {
  padding: 6rem;
}

.padding-small {
  padding: 1rem;
}

.margin-right {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.padding-large {
  padding: 2.5rem;
}

.max-width-xxlarge {
  width: 100%;
  max-width: 62.5rem;
}

.align-center {
  margin-left: auto;
  margin-right: auto;
}

.max-width-xxsmall {
  width: 100%;
  max-width: 12rem;
}

.margin-xxlarge {
  margin: 5rem;
}

.margin-xxsmall {
  margin: .25rem;
}

.padding-xxhuge {
  padding: 12rem;
}

.padding-bottom {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-xhuge {
  padding: 8rem;
}

.layer {
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0%;
}

.margin-medium {
  margin: 2rem;
}

.margin-xlarge {
  margin: 4rem;
}

.padding-xlarge {
  padding: 4rem;
}

.margin-small {
  margin: 1rem;
}

.padding-right {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.max-width-xlarge {
  width: 100%;
  max-width: 50rem;
}

.padding-medium {
  padding: 2rem;
}

.padding-xxlarge {
  padding: 5rem;
}

.margin-xxhuge {
  margin: 12rem;
}

.padding-xsmall {
  padding: .5rem;
}

.container-large {
  width: 100%;
  max-width: 87.5rem;
  margin-left: auto;
  margin-right: auto;
}

.main-wrapper {
  z-index: 1;
}

.max-width-medium {
  width: 100%;
  max-width: 32rem;
}

.z2 {
  z-index: 2;
  position: relative;
}

.styleguide-classes {
  display: none;
}

.margin-xsmall {
  margin: .5rem;
}

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-small.inline {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.margin-bottom.margin-small {
  width: 90%;
}

.spacing-clean {
  margin: 0;
  padding: 0;
}

.show-tablet {
  display: none;
}

.margin-horizontal {
  margin-top: 0;
  margin-bottom: 0;
}

.margin-left {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

.margin-tiny {
  margin: .125rem;
}

.container-xsmall {
  width: 100%;
  max-width: 37.5rem;
  margin-left: auto;
  margin-right: auto;
}

.padding-tiny {
  padding: .125rem;
}

.container-medium {
  width: 100%;
  max-width: 62.5rem;
  margin-left: auto;
  margin-right: auto;
}

.margin-xhuge {
  margin: 8rem;
}

.overflow-scroll {
  overflow: scroll;
}

.max-width-small {
  width: 100%;
  max-width: 22rem;
}

.page-padding {
  padding-top: 72px;
  padding-left: 3rem;
  padding-right: 3rem;
}

.overflow-auto {
  overflow: auto;
}

.margin-top {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.max-width-full {
  width: 100%;
  max-width: none;
}

.max-width-xsmall {
  width: 100%;
  max-width: 16rem;
}

.z1 {
  z-index: 1;
  position: relative;
}

.padding-left {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.container-small {
  width: 100%;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}

.show {
  display: block;
}

.show-mobile-portrait {
  display: none;
}

.padding-vertical {
  padding-left: 0;
  padding-right: 0;
}

.padding-top {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-top.padding-xhuge {
  padding-top: 6.6rem;
}

.section-styleguide {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: flex;
}

.section-styleguide.first {
  padding-top: 0;
}

.section-styleguide.last {
  padding-bottom: 0;
}

.text-meta-large {
  color: var(--dark-grey);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  line-height: 140%;
}

.form-checkbox {
  flex-direction: row;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.form-radio-icon {
  border-color: #242424;
  width: 20px;
  height: 20px;
  margin-top: 0;
  margin-left: 0;
  margin-right: .5rem;
}

.form-radio-icon.w--redirected-checked {
  border-width: .25rem;
  border-color: #242424;
  width: 20px;
  height: 20px;
}

.form-radio-icon.w--redirected-focus {
  width: .875rem;
  height: .875rem;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

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

.heading-h5 {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 130%;
}

.form-checkbox-label {
  margin-left: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 140%;
}

.text-size-large {
  font-size: 1.375rem;
  line-height: 180%;
}

.text-rich-text {
  color: var(--dark-slate-grey);
}

.text-rich-text h1, .text-rich-text h2, .text-rich-text h3 {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.text-rich-text h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.text-rich-text h5 {
  margin-top: 1.25rem;
  margin-bottom: .75rem;
}

.text-rich-text h6 {
  margin-top: 1.25rem;
  margin-bottom: .5rem;
}

.text-rich-text p {
  margin-bottom: 1rem;
}

.text-rich-text ul {
  margin-bottom: .75rem;
}

.text-rich-text a, .text-rich-text a:hover {
  text-decoration: underline;
}

.text-rich-text blockquote {
  background-image: url('../images/quote.svg');
  background-position: 0 56px;
  background-repeat: no-repeat;
  background-size: 40px;
  border-left: 0 #000;
  margin-top: 0;
  padding: 3rem 0 3rem 4.5rem;
  font-size: 2rem;
  line-height: 140%;
}

.text-rich-text figcaption {
  font-size: .875rem;
}

.subnav-item-line {
  background-color: #222;
  width: 0%;
  height: 1px;
}

.styleguide-flex {
  grid-column-gap: 1rem;
  align-items: center;
  display: flex;
}

.heading-medium {
  font-size: 6vw;
  font-weight: 400;
  line-height: 110%;
}

.text-style-link, .text-style-link:hover {
  text-decoration: underline;
}

.text-size-xlarge {
  font-size: 1.5rem;
  line-height: 150%;
}

.heading-h4 {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 140%;
}

.heading-h4.text-uppercase {
  letter-spacing: 1px;
}

.block-quote {
  background-image: url('../images/quote.svg');
  background-position: 0 59px;
  background-repeat: no-repeat;
  background-size: 40px;
  border-left: 1px #000;
  margin-bottom: 0;
  padding: 3rem 0 3rem 4.5rem;
  font-size: 2rem;
  font-weight: 400;
  line-height: 140%;
}

.icon-1x1-xsmall {
  width: 18px;
  height: 18px;
  line-height: 100%;
}

.form-radio {
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

.heading-h6 {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 130%;
  text-decoration: none;
}

.heading-h6:hover {
  text-decoration: none;
}

.heading-h6.white {
  color: var(--light-grey);
}

.form-checkbox-icon {
  border-color: #191919;
  border-radius: 0;
  width: 20px;
  height: 20px;
  margin: 0 .5rem 0 0;
}

.form-checkbox-icon.w--redirected-checked {
  background-color: #242424;
  background-size: 70%;
  border-color: #242424;
  border-radius: 0;
  width: 20px;
  height: 20px;
  margin: 0 .5rem 0 0;
}

.form-checkbox-icon.w--redirected-focus {
  box-shadow: none;
  margin-top: 0;
  margin-left: 0;
  margin-right: .5rem;
}

.heading-small {
  font-size: 5.5vw;
  font-weight: 400;
  line-height: 110%;
}

.icon-1x1-xxsmall {
  width: 16px;
  height: 16px;
  line-height: 100%;
}

.icon-1x1-medium {
  width: 28px;
  height: 28px;
  line-height: 100%;
}

.nav-item-line {
  background-color: #222;
  width: 0%;
  height: 1px;
}

.card.secondary {
  background-color: var(--main);
  color: var(--white);
}

.card.muted {
  background-color: #f8f8f8;
}

.card.primary {
  color: #fff;
  background-color: #191919;
}

.form-label {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 400;
  line-height: 160%;
}

.form-message-success {
  background-color: #0000;
  border: 1px solid #191919;
  padding: 1.25rem;
}

.text-meta-small {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  line-height: 130%;
}

.styleguide-4-col {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.nav {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.icon-1x1-large {
  width: 32px;
  height: 32px;
  line-height: 100%;
}

.icon-1x1-large.second {
  display: none;
}

.icon-1x1-default {
  width: 24px;
  height: 24px;
  line-height: 100%;
}

.card-padding {
  padding: 3rem;
}

.card-padding.large {
  padding: 4rem;
}

.card-padding.xlarge {
  padding: 3rem 1.6rem;
  display: block;
}

.card-padding.xlarge.margin-right {
  border-right: 1px solid var(--dark-grey);
  background-color: var(--main);
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.card-padding.xlarge.margin-right:hover {
  background-color: var(--light-grey);
}

.card-padding.xlarge.margin-right._2 {
  background-color: var(--light-grey);
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  display: flex;
}

.card-padding.xlarge.margin-right._2:hover {
  background-color: var(--main);
}

.card-padding.small {
  padding: 1.5rem 2rem;
}

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

.label {
  border: 1px solid var(--light-grey);
  color: #242424;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  align-items: center;
  padding: .4rem .5rem;
  font-size: 13px;
  font-weight: 400;
  line-height: 110%;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.label.muted {
  background-color: #f8f8f8;
}

.label.primary {
  color: #fff;
  background-color: #222;
}

.label.secondary {
  background-color: var(--main);
  color: var(--white);
}

.text-size-tiny {
  font-size: .75rem;
  line-height: 160%;
}

.form-field-wrapper {
  margin-bottom: .7rem;
}

.text-size-regular {
  color: var(--dark-slate-grey);
  padding-top: 0;
  font-size: 1rem;
  line-height: 160%;
}

.text-size-regular.text-color-white {
  width: 70%;
  font-size: 1.125rem;
}

.background-color-muted {
  background-color: #f8f8f8;
}

.heading-h1 {
  font-size: 4rem;
  font-weight: 400;
  line-height: 120%;
}

.text-size-small {
  color: var(--dark-grey);
  font-size: .875rem;
  line-height: 180%;
}

.nav-item-text {
  line-height: 1.2rem;
}

.styleguide-right {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
}

.styleguide-right.gap-medium {
  grid-row-gap: 2.5rem;
}

.background-color-primary {
  background-color: #242424;
}

.subnav {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.subnav.xsmall {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
}

.subnav.small {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
}

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

.text-color-default {
  color: #242424;
}

.heading-h3 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 120%;
}

.heading-h3.uppercase {
  color: var(--dark-slate-grey);
  letter-spacing: 7px;
  text-transform: uppercase;
  font-size: 3rem;
}

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

.styleguide-elements {
  margin-left: 300px;
}

.text-size-medium {
  color: var(--dark-grey);
  font-size: 1.125rem;
  line-height: 180%;
}

.text-size-medium.text-color-white {
  margin-bottom: 29px;
  font-size: 1.125rem;
  line-height: 120%;
}

.italic {
  font-weight: 400;
}

.line {
  background-color: var(--light-grey);
  perspective-origin: 50%;
  transform-origin: 50%;
  width: 100%;
  height: 1px;
}

.styleguide-2-col {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.heading-large {
  font-size: 6.5vw;
  font-weight: 400;
  line-height: 110%;
}

.text-color-muted {
  color: #777;
}

.styleguide-3-col {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.icon-1x1-small {
  width: 20px;
  height: 20px;
  line-height: 100%;
}

.text-color-primary {
  color: var(--main);
}

.form-input {
  border: 1px solid var(--dark-grey);
  letter-spacing: .5px;
  background-color: #0000;
  border-radius: 0;
  min-height: 3rem;
  margin-bottom: 0;
  padding: 1rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  transition: background-color .2s, border .2s;
}

.form-input:active, .form-input:focus {
  background-color: #fff;
  border-color: #242424;
}

.form-input::placeholder {
  color: #777;
}

.form-input.is-text-area {
  min-height: 10rem;
}

.text-meta {
  color: var(--dark-slate-grey);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  line-height: 140%;
}

.text-meta.text-color-white {
  font-size: 13px;
  line-height: 100%;
}

.text-meta.other-colour {
  color: var(--dark-slate-grey);
}

.heading-h2 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 110%;
}

.form-message-error {
  background-color: #0000;
  border: 1px solid #191919;
  margin-top: .75rem;
  padding: .75rem 1rem;
}

.form-radio-label {
  font-size: 1rem;
  font-weight: 300;
}

.heading-xlarge {
  font-size: 9vw;
  font-weight: 400;
  line-height: 100%;
}

.styleguide-nav-wrapper {
  z-index: 100;
  border-right: 1px solid var(--light-grey);
  background-color: #fff;
  width: 300px;
  padding: 3rem 2.5rem;
  position: fixed;
  inset: 0% auto 0% 0%;
  overflow: scroll;
}

.styleguide-nav {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.styleguide-nav-item {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-direction: column;
  font-size: 13px;
  font-weight: 400;
  line-height: 150%;
}

.styleguide-nav-item:hover, .styleguide-nav-item.w--current {
  text-decoration: underline;
}

.styleguide-menu-toggle-line._03 {
  bottom: 0;
}

.styleguide-menu-toggle-line._02 {
  margin-top: -1px;
}

.styleguide-navbar {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: none;
}

.body {
  background-color: #fff;
  line-height: 180%;
}

.licensing-right {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.licensing-inner-right {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-direction: column;
  display: flex;
}

.section-licensing {
  z-index: 1;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1px 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.section-licensing-left {
  padding: 4rem;
  position: sticky;
  top: 0;
}

.licensing-inner-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 160px 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.line-vertical {
  background-color: var(--light-grey);
  width: 1px;
  height: 100%;
}

.line-vertical.hide-tablet {
  background-color: #0000003b;
  height: 80%;
}

.licensing-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  padding: 3rem;
  display: flex;
}

.list-item {
  margin-bottom: 0;
  padding-left: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 140%;
}

.changelog-grid {
  margin-top: -1px;
}

.section-changelog {
  z-index: 1;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1px 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.list {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-direction: column;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.changelog-right {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
}

.section-changelog-left {
  padding: 3rem;
  position: sticky;
  top: 0;
}

.changelog-grid-item {
  grid-column-gap: 4rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  padding: 3rem;
  display: grid;
}

.utility-component {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.utility-form-block {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 350px;
  display: flex;
}

.utility-form {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.section-404 {
  text-align: center;
  justify-content: center;
  align-items: center;
  height: auto;
  display: flex;
  overflow: hidden;
}

.container-xxlarge {
  width: 100%;
  max-width: 112.5rem;
  margin-left: auto;
  margin-right: auto;
}

.header {
  z-index: 1000;
  background-color: #fff;
  width: 100vw;
  position: fixed;
  box-shadow: 0 2px 20px -3px #0003;
}

.mobile-menu {
  z-index: 100;
  background-color: var(--white);
  display: none;
  position: absolute;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.navbar-inner {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: auto 1px 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.navbar-left {
  padding-left: 2rem;
  padding-right: 2rem;
}

.navbar-right {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1px auto;
  grid-auto-columns: 1fr;
  display: grid;
}

.navbar-menu-item-link {
  height: 100%;
  color: var(--dark-grey);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  flex: 1;
  align-items: center;
  padding: 1.5rem 1rem;
  font-family: Montserrat, sans-serif;
  font-size: .85rem;
  font-weight: 600;
  transition: background-color .3s;
  display: flex;
  position: relative;
}

.navbar-menu-item-link:hover {
  background-color: var(--light-grey);
  color: var(--dark-slate-grey);
}

.navbar-menu-item-link.navbar-button {
  flex-direction: column;
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-menu-item-link.navbar-button:hover {
  background-color: var(--dark-slate-grey);
  color: var(--white);
}

.navbar-menu-item-inner {
  z-index: 6;
  flex-direction: column;
  width: 7.5rem;
  height: 1.5rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.mobile-menu-toggle {
  display: none;
}

.navbar-right-button {
  display: flex;
}

.mobile-menu-toggle-line._02 {
  margin-top: -1px;
}

.navbar-button {
  background-color: var(--main);
  color: var(--white);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  font-family: Montserrat, sans-serif;
  font-size: .85rem;
  font-weight: 600;
  display: flex;
  position: relative;
  overflow: hidden;
}

.navbar-menu {
  background-color: #0000;
  justify-content: center;
  align-items: center;
  display: flex;
}

.home-hero-slide-image-wrapper {
  flex: 1;
  position: relative;
}

.hero-slide-nav {
  height: 1.8rem;
  font-size: .5rem;
  inset: auto auto 2.625rem 2rem;
}

.hero-slider-arrow {
  z-index: 50;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 7.5rem;
  height: 5rem;
  transition: background-color .3s;
  display: flex;
  inset: auto 0 0 auto;
}

.hero-slider-arrow:hover {
  background-color: #f4f4f41a;
}

.hero-slider-arrow.is-left {
  z-index: 50;
  background-color: #0000;
  height: 5rem;
  right: 7.4rem;
}

.hero-slider-arrow.is-left:hover {
  background-color: #f4f4f426;
}

.home-hero-image-slider {
  background-color: #0000;
  width: 100%;
  height: 100%;
  min-height: 91vh;
  max-height: 60rem;
  overflow: hidden;
}

.home-hero-slide-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
}

.home-hero-slide-wrapper {
  flex-direction: column;
  grid-template-rows: auto max-content;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  display: flex;
}

.home-hero-slider-arrow {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--light-grey);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.home-hero-content {
  z-index: 10;
  background-color: #0006;
  flex-direction: column;
  justify-content: space-between;
  width: 70%;
  height: 100%;
  display: flex;
  position: absolute;
}

.section-home-hero {
  position: relative;
}

.home-hero-grid {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 100% 50%;
  grid-auto-columns: 1fr;
  align-items: center;
  height: 100%;
  display: grid;
}

.home-hero-content-inner {
  flex-direction: column;
  flex: 1;
  justify-content: space-around;
  align-items: flex-start;
  padding: 5.1rem 3rem 1.5rem;
  display: flex;
}

.home-hero-content-inner._70 {
  background-color: var(--blue-light);
  justify-content: center;
  height: 100%;
  padding-left: 1.7rem;
  padding-right: 1.7rem;
}

.button-group {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: grid;
}

.section-home-services.stick {
  z-index: 10;
  background-color: var(--light-grey);
  position: sticky;
  top: 70px;
}

.services-grid {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.services-row {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
}

.section-home-about {
  background-image: linear-gradient(#0003, #0003), url('../images/Unlock.jpg');
  background-position: 0 0, 45% 55%;
  background-size: auto, cover;
  height: 700px;
}

.section-home-about.no-bg {
  background-image: none;
}

.section-home-about.landing {
  background-image: linear-gradient(to bottom, var(--blue-light), var(--blue-light)), url('../images/217511805_332486818461698_8929326153665294012_n.jpg');
  background-position: 0 0, 45% 55%;
  background-size: auto, cover;
}

.home-about-grid {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.home-about-grid._2 {
  grid-template-columns: 1fr;
  height: 100%;
}

.home-about-content {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  height: 100%;
  display: flex;
}

.home-about-image-cover {
  background-image: url('../images/home_01.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.home-about-image-cover.image-2 {
  background-image: url('../images/361842767_18374936242053909_933928917413048202_n.jpg');
  background-position: 50%;
  background-size: cover;
}

.home-about-image-cover.image-1 {
  background-image: url('../images/350883384_1196665584342048_4448302487833247009_n.jpg');
  background-position: 50%;
  background-size: cover;
}

.line-horizontal {
  z-index: 1;
  background-color: var(--light-grey);
  width: 100%;
  height: 1px;
  position: relative;
}

.home-about-content-inner {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  padding: 10rem 4rem;
  display: flex;
}

.section-projects {
  background-image: linear-gradient(139deg, #0517e01a, #fff);
}

.project-slider-wrapper {
  padding-bottom: 7rem;
  overflow: hidden;
}

.project-card-slider {
  background-color: #0000;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.project-mask {
  width: 50%;
  max-width: 800px;
  overflow: visible;
}

.slide-arrow {
  background-color: #fff;
  border: 1px solid #f5f5f5;
  border-right-width: .5px;
  justify-content: center;
  align-items: center;
  width: 7.5rem;
  height: 7.5rem;
  margin-left: -7.5rem;
  transition: background-color .3s;
  display: flex;
  inset: auto auto -4rem;
}

.slide-arrow:hover {
  background-color: var(--light-grey);
}

.slide-arrow.right {
  border-left-width: .5px;
  border-right-width: 1px;
  margin-left: 0;
  margin-right: -7.5rem;
}

.slider-arrow-icon {
  width: 16px;
  transform: rotate(180deg);
}

.slider-arrow-icon.right {
  transform: none;
}

.slide-nav {
  display: none;
}

.project-image-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.project-image {
  background-image: url('../images/103699423_2622832017962656_1164214113978913506_n.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 110%;
  height: 110%;
  position: absolute;
  inset: auto;
}

.project-image._1 {
  background-image: url('../images/DECKS.jpg');
}

.project-image._3 {
  background-image: url('../images/70918776_2391495237763003_1768706565155586048_n.jpg');
}

.gradient-overlay {
  background-image: linear-gradient(to top, #000000b3 30%, #0000);
  position: absolute;
  inset: 0%;
}

.project-card-content {
  z-index: 10;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: end;
  width: 100%;
  height: 100%;
  padding-bottom: 6rem;
  display: grid;
  position: relative;
}

.image-card-bottom {
  z-index: 10;
  grid-column-gap: 16px;
  grid-row-gap: 9px;
  text-align: center;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-left: 3rem;
  padding-right: 3rem;
  display: grid;
  position: relative;
}

.project-card-wrapper {
  color: #fff;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 28vw;
  min-height: 450px;
  max-height: 550px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section-home-testimonials {
  justify-content: center;
  align-items: center;
  padding-top: 84px;
  padding-bottom: 84px;
  display: flex;
}

.section-home-testimonials.hidden {
  display: none;
}

.testimonial-grid {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1px 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.testimonial-content-left {
  padding: 5rem 4rem;
  position: sticky;
  top: 0;
}

.testimonial-content-right {
  line-height: 100%;
}

.testimonial-content-item {
  background-color: #fff;
  padding: 3rem;
  line-height: 100%;
}

.testimonial-rating-wrapper {
  margin-bottom: 1.5rem;
  display: flex;
}

.testimonial-rating-icon {
  color: #0000;
  flex-direction: column;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: .25rem;
  display: flex;
}

.testimonial-client {
  text-align: left;
  align-items: center;
  display: flex;
}

.testimonial-client-image-wrapper {
  margin-right: 1rem;
}

.testimonial-customer-image {
  object-fit: cover;
  border-radius: 100%;
  width: 3rem;
  min-width: 3rem;
  height: 3rem;
  min-height: 3rem;
}

.client-name {
  color: #333;
  font-weight: 600;
}

.client-title {
  color: #a1a1a1;
}

.team-list {
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start center;
  display: grid;
}

.team-item {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.team-image-wrapper {
  width: 100%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}

.team-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.section-cta {
  height: 450px;
  position: relative;
}

.cta-component {
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: start;
  height: 100%;
  display: grid;
}

.cta-content {
  flex: 1;
  height: 100%;
  padding: 7rem 4rem;
}

.text-color-white {
  width: auto;
  color: var(--white);
  font-size: 2.4rem;
}

.text-color-white.h2-title {
  margin-top: 11px;
  font-size: 1.3rem;
}

.cta-button-group {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: stretch;
  place-items: center end;
  display: grid;
}

.cta-background-image-wrapper {
  z-index: -1;
  background-image: linear-gradient(#00000080, #00000080);
  position: absolute;
  inset: 0%;
}

.image-overlay-layer {
  z-index: 1;
  background-color: #00000080;
  position: absolute;
  inset: 0%;
}

.cta-background-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.footer-grid {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: .3315fr 1px 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.footer-grid-left {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 3.3rem 3rem;
  display: flex;
}

.footer-grid-right {
  padding: 3rem;
}

.footer-grid-right-inner {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.footer-column {
  border-left: 1px #000;
  border-right: 1px solid #00000040;
  padding-left: 18px;
  padding-right: 18px;
}

.footer-column.no-margin {
  border-right-style: none;
  padding-left: 0;
  padding-right: 0;
}

.footer-bottom {
  border-bottom: 1px solid var(--light-grey);
  text-align: center;
  justify-content: space-between;
  display: flex;
}

.footer-bottom-left {
  padding: 1.25rem 1.5rem;
}

.footer-bottom-nav {
  display: flex;
}

.footer-bottom-nav-item {
  color: var(--dark-slate-grey);
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding: 1.25rem 1.5rem;
  transition: background-color .3s;
  display: flex;
}

.footer-bottom-nav-item:hover {
  background-color: var(--light-grey);
}

.footer-bottom-nav-item.primary {
  background-color: var(--dark-slate-grey);
  color: #fff;
}

.footer-bottom-nav-item.primary:hover, .footer-bottom-nav-item.primary.w--current:hover {
  background-color: var(--main);
}

.hero-button-group {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  height: auto;
  display: grid;
}

.hero-button-group.single {
  grid-template-columns: 1fr;
  display: block;
}

.navbar-inner-text.bigger-size {
  font-size: 1rem;
}

.navbar-inner-text-hover {
  font-size: .85rem;
}

.section-about-hero {
  height: 80vh;
}

.about-hero-grid {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  height: 100%;
  display: grid;
}

.about-hero-content-inner {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  padding: 5rem 4rem;
  display: flex;
}

.about-hero-image-wrapper {
  background-image: url('../images/213254407_513337303309049_2193414497573132225_n.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  min-height: 25rem;
}

.about-info-grid {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
}

.section-about-expertise {
  background-image: linear-gradient(105deg, #0517e026, #fff);
}

.section-about-expertise.bg-image {
  background-image: linear-gradient(#0003, #0003), url('../images/Unlock.jpg');
  background-position: 0 0, 50% 100%;
  background-size: auto, cover;
}

.about-expertise-grid {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.about-expertise-image-cover {
  background-image: url('../images/about_02.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.about-expertise-image-cover.image-1 {
  background-image: url('../images/217411159_200480292006052_2506672442229362046_n.jpg');
  background-position: 50%;
  background-size: cover;
}

.about-expertise-image-cover.image-2 {
  background-image: url('../images/Unlock.jpg');
  background-position: 50%;
  background-size: cover;
}

.about-expertise-content {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.about-expertise-content-inner {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  padding: 8.2rem 4rem;
  display: flex;
}

.about-stats-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1px .75fr;
}

.about-stats-content {
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem;
  display: flex;
}

.stats-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1px 1fr;
}

.stats {
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.stat-number {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
}

.section-about-values {
  z-index: 1;
}

.about-values-grid {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1px 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.about-values-grid-left {
  position: sticky;
  top: 0;
}

.home-process-image-wrapper {
  height: 100vh;
  position: relative;
  overflow: hidden;
  transform: translate(0);
}

.process-image-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.about-values-grid-right {
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  min-height: auto;
  padding: 5.2rem 4rem;
  display: flex;
}

.about-values-grid-right-inner {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-self: flex-start;
  display: flex;
}

.about-values-item {
  background-color: #fff;
  position: sticky;
  top: 100px;
}

.about-values-item._02 {
  top: 150px;
}

.about-values-item._03 {
  position: sticky;
  top: 200px;
}

.about-values-item._04 {
  position: sticky;
  top: 250px;
}

.about-values-item-top {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: #d7ddf8;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  display: flex;
}

.about-values-item-inner {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 50px 1fr;
  grid-auto-columns: 1fr;
  padding: 3rem;
  display: grid;
}

.stats-image-wrapper {
  z-index: 0;
  display: none;
  position: absolute;
  inset: 0%;
}

.stats-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.stats-image._01 {
  background-image: url('../images/75291143_428847634438484_5994467222366181965_n.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.stats-image._02 {
  background-image: url('../images/361842767_18374936242053909_933928917413048202_n.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.stats-image._03 {
  background-image: url('../images/about_05.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.stats-image._04 {
  background-image: url('../images/about_06.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.stats-overlay {
  z-index: 1;
  background-image: linear-gradient(#0000004d, #0000004d);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.services-hero-image-wrapper {
  width: 100%;
  height: 100%;
  min-height: 25rem;
}

.section-services-hero {
  height: 80vh;
}

.services-hero-grid {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  height: 100%;
  display: block;
  position: relative;
}

.home-services-content {
  z-index: 10;
  background-color: #12142763;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 70%;
  height: 100%;
  display: flex;
  position: absolute;
}

.home-services-content.about {
  background-color: #0006;
}

.home-services-content._2 {
  background-color: #0000;
  flex-flow: row;
  justify-content: space-between;
  width: 100%;
}

.services-hero-content-inner {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  padding: 5rem 4rem;
  display: flex;
}

.services-hero-content-inner.services {
  justify-content: space-between;
}

.services-hero-content-inner.about {
  justify-content: center;
}

.service-grid-header {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  background-color: #0000;
  border-top: 1px solid #0517e080;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 6rem 3rem;
  display: grid;
}

.service-grid-header._2 {
  background-color: var(--light-grey);
  border-top-width: 1px;
  border-top-color: #0517e080;
}

.service-overview {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.service-image-slider {
  background-color: #0000;
  width: 100%;
  height: 100%;
  min-height: 50vh;
  overflow: hidden;
}

.service-content {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.service-content._2 {
  background-color: var(--light-grey);
}

.service-content-inner {
  background-color: #0000;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  padding: 5rem 4rem;
  display: flex;
}

.service-slide-wrapper {
  flex-direction: column;
  grid-template-rows: auto max-content;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  display: flex;
}

.service-slide-image-wrapper {
  flex: 1;
  position: relative;
}

.service-slide-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
}

.service-slider-arrow {
  z-index: 3;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 7.5rem;
  height: 7.5rem;
  transition: background-color .3s;
  display: flex;
  inset: auto 0 0 auto;
}

.service-slider-arrow:hover {
  background-color: #f4f4f426;
}

.service-slider-arrow.is-left {
  background-color: #0000;
  right: 7.4rem;
}

.service-slider-arrow.is-left:hover {
  background-color: #f4f4f426;
}

.arrow-icon {
  width: 1rem;
  height: 1rem;
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-project-content {
  z-index: 1;
}

.project-content-grid {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1px 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.project-content-image-wrapper {
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
  transform: translate(0);
}

.image-cover-parallax {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.project-content-top {
  padding: 5rem 3rem;
}

.project-content-overview {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
}

.project-grid {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  align-items: start;
  display: grid;
}

.project-item {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: .75fr .5fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.project-image-link {
  width: 100%;
}

.single-project-image-wrapper {
  width: 100%;
  height: 100%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}

.single-project-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .5s cubic-bezier(.165, .84, .44, 1);
  position: absolute;
  inset: 0%;
}

.single-project-image:hover {
  transform: scale(1.3);
}

.project-item-content {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.project-category {
  background-color: var(--light-grey);
  color: var(--dark-grey);
  text-align: center;
  justify-content: center;
  align-self: center;
  align-items: center;
  padding: 1rem .5rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
}

.project-category.w--current {
  border-bottom: 2px solid #000;
}

.project-title-link {
  margin-bottom: .5rem;
  text-decoration: none;
  transition: color .3s;
  display: block;
}

.project-title-link:hover {
  color: var(--main);
}

.project-button-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1px .75fr;
  grid-auto-columns: 1fr;
  height: 100%;
  max-height: 4rem;
  display: grid;
}

.project-item-content-top {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  padding: 3rem;
  display: flex;
}

.button-wrapper {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.project-link-button {
  height: 100%;
  color: var(--dark-slate-grey);
  text-align: center;
  text-transform: uppercase;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .3s;
  display: flex;
}

.project-link-button:hover {
  background-color: var(--light-grey);
}

.header56_component {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr .25fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.header-background-image-wrapper {
  z-index: -1;
  background-image: linear-gradient(#00000080, #00000080);
  position: absolute;
  inset: 0%;
}

.header-background-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.project-overview-grid {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.project-content-wrapper {
  position: sticky;
  top: 5rem;
}

.project-image-gallery {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.gallery-image-wrapper {
  flex: 1;
  width: 100%;
}

.gallery-image {
  width: 100%;
  height: 100%;
}

.card-detail-content {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  padding: 4rem 3rem;
  display: flex;
}

.detail-card {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  transition: background-color .3s;
  display: flex;
}

.detail-card:hover {
  background-color: var(--light-grey);
}

.service-link-button {
  border: 1px solid var(--light-grey);
  width: 100%;
  height: 8rem;
  color: var(--dark-slate-grey);
  text-align: center;
  text-transform: uppercase;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .3s;
  display: flex;
}

.service-link-button:hover {
  background-color: #0517e033;
}

.project-details-row {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
}

.project-details-grid {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

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

.contact-component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.field-label {
  margin-bottom: .2rem;
  font-weight: 400;
}

.success-message {
  border: 1px solid var(--dark-grey);
  background-color: #0000;
  padding: 1.5rem;
}

.success-text {
  font-weight: 600;
}

.error-message {
  margin-top: 1.5rem;
  padding: .875rem 1rem;
}

.error-text {
  color: #e23939;
}

.contact-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.service-detail-component {
  grid-column-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.service-detail-content {
  max-width: 35rem;
  margin-left: 5vw;
  margin-right: 5rem;
}

.service-detail-image {
  object-fit: cover;
  width: 100%;
  height: 100vh;
  max-height: 60rem;
}

.licensing-image-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.licensing-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.licensing-image-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 12rem;
}

.licensing-icon-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.licensing-icon-wrapper {
  width: 3rem;
  height: 3rem;
}

.empty-state {
  background-color: var(--light-grey);
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-home-projects {
  background-image: linear-gradient(#0003, #0003), url('../images/361842767_18374936242053909_933928917413048202_n.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  height: 700px;
  display: flex;
}

.services-hero-image-slider {
  width: 100%;
  height: 100%;
  min-height: auto;
  max-height: none;
  overflow: hidden;
}

.div-block {
  line-height: 100%;
}

.collection-list-wrapper {
  display: block;
}

.gallery-pink-circle {
  background-color: #ff7162;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  position: absolute;
  inset: 8% auto auto 17%;
}

.gallery-wrap {
  grid-column-gap: 20px;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin-top: 28px;
  display: flex;
}

.gallery-small-pink-circle {
  background-color: #ff7162;
  border-radius: 50px;
  width: 30px;
  height: 30px;
  display: none;
  position: absolute;
  inset: 40% 1% 0% auto;
}

.large-image {
  object-fit: cover;
  border-radius: 30px;
  width: 100%;
  height: 450px;
}

.gallery-blue-circle {
  background-color: #253b70;
  border-radius: 50px;
  width: 20px;
  height: 20px;
  position: absolute;
  inset: 25% auto auto 2%;
}

.lightbox-wrapper {
  border-radius: 30px;
  overflow: hidden;
}

.lightbox-link {
  border-radius: 30px;
  width: 100%;
  transition: transform .4s, color .3s;
}

.lightbox-link:hover {
  transform: scale(1.1);
}

.second-images-wrap {
  grid-row-gap: 20px;
  flex-direction: column;
  width: 33.3%;
  display: flex;
}

.lightbox-image {
  object-fit: cover;
  border-radius: 30px;
  width: 100%;
  height: 220px;
}

.gallery-blue-small-circle {
  background-color: #253b70;
  border-radius: 50px;
  width: 20px;
  height: 20px;
  position: absolute;
  inset: 7% auto auto 9%;
}

.small-image {
  object-fit: cover;
  border-radius: 30px;
  width: 100%;
  height: 210px;
}

.lightbox-gallery {
  width: 100%;
}

.gallery-medium-pink-circle, .gallery-medium-blue-circle {
  display: none;
}

.base-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-left: 37px;
  padding-right: 37px;
  display: flex;
}

.first-images-wrap {
  grid-row-gap: 20px;
  flex-direction: column;
  width: 33.4%;
  display: flex;
}

.third-images-wrap {
  grid-row-gap: 20px;
  flex-direction: column;
  width: 33.3%;
  display: flex;
}

.div-block-2 {
  padding-top: 83px;
  padding-bottom: 42px;
}

.div-block-3 {
  padding-left: 35px;
  padding-right: 35px;
}

.div-block-4 {
  border-radius: 30px;
  overflow: hidden;
}

.heading {
  margin-top: 3.6rem;
}

.link {
  font-size: 20px;
}

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

.textarea {
  height: 100px;
  line-height: 3;
}

.text-block {
  margin-top: 18px;
  margin-bottom: 18px;
}

.link-block {
  background-color: #f0f0f0;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 14px;
  margin-bottom: 0;
  padding: 14px;
  transition: all .45s;
}

.link-block:hover {
  background-color: #dddce5;
}

.heading-3 {
  margin-bottom: 0;
  font-size: 2.5rem;
}

.div-block-5 {
  border-bottom: 1px solid var(--dark-grey);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 64px;
  padding-bottom: 49px;
  display: flex;
}

.div-block-5.hidden {
  display: none;
}

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

.image-3 {
  margin-right: 13px;
}

.link-block-2 {
  margin-left: 5px;
  margin-right: 5px;
}

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

.heading-4 {
  margin-bottom: 67px;
}

.div-block-9 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 118px;
  padding-bottom: 118px;
  display: flex;
}

.div-block-10 {
  grid-column-gap: 19px;
  grid-row-gap: 19px;
  flex-flow: column;
  width: 50%;
  display: flex;
}

.client-logo-one-box {
  padding-top: 70px;
  padding-bottom: 70px;
  display: flex;
  overflow: hidden;
}

.client-logo-one-box.border-top {
  border-top: 1px solid #15141c1a;
}

.client-logo-one-wrap {
  flex: none;
  align-self: center;
  margin-left: 0;
}

.client-one-logo {
  margin-left: 0;
  margin-right: 40px;
}

._30 {
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  padding: 78px 25px 25px;
  display: flex;
}

.div-block-12 {
  background-color: var(--light-grey);
  padding: 20px;
}

.accordion-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  width: 100%;
  display: flex;
}

.accordion-wrapper.service-details {
  margin-top: 0;
}

.accordion-icon {
  margin-left: 20px;
  font-size: 17px;
  line-height: 24px;
}

.accordion-item {
  border: 1px solid #afafaf80;
  border-radius: 20px;
  width: 100%;
  padding: 20px 30px;
  position: static;
}

.section-title {
  margin-top: 0;
  margin-bottom: 25px;
}

.section-title-wrapper {
  text-align: center;
  max-width: 740px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}

.base-container-2 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.accordion-title {
  margin-top: 0;
  margin-bottom: 0;
}

.accordion-toggle {
  white-space: normal;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 10px 0;
  display: flex;
}

.accordion-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  width: 50%;
  display: flex;
}

.accordion-list {
  background-color: #0000;
  width: 100%;
  display: block;
  position: static;
  overflow: hidden;
}

.accordion-list.w--open {
  background-color: #0000;
  padding-top: 0;
  padding-bottom: 20px;
  display: block;
}

.section {
  padding-top: 110px;
  padding-bottom: 110px;
  position: relative;
}

.accordion-list-content {
  margin-top: 0;
  margin-bottom: 0;
}

.faq {
  z-index: 1;
  padding-top: 110px;
  padding-bottom: 110px;
  position: relative;
}

.subtitle-wrapper {
  grid-column-gap: 15px;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.video-lightbox-link {
  width: 100%;
  height: 100%;
}

.main-features-wrapper {
  z-index: 1;
  grid-column-gap: 30px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  display: grid;
  position: relative;
}

.main-features-wrapper.second-style {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.main-features-wrapper.second-style.space-down {
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 60px;
}

.dot {
  background-color: #0c0c0d;
  border-radius: 100px;
  width: 6px;
  height: 6px;
}

.big-number {
  color: #0053a0;
  margin-bottom: 10px;
  font-size: 50px;
  font-weight: 500;
  line-height: 1em;
}

.home-3-image-wrapper {
  border-radius: 20px;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.arrow-button {
  color: #0c0c0d;
  text-align: center;
  text-transform: lowercase;
  background-color: #3030c000;
  border: 1px solid #afafaf80;
  border-radius: 50px;
  padding: 10px 26px;
  font-size: 16px;
  transition: all .3s;
  display: inline-block;
}

.arrow-button:hover {
  opacity: 1;
}

.section-two-side-title-wrapp {
  z-index: 999;
  grid-column-gap: 60px;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 60px;
  display: flex;
  position: relative;
}

.no-margin {
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 0;
}

.no-margin.text-white {
  color: #fff;
}

.video-wrapper-bigger {
  border-radius: 20px;
  width: 100%;
  height: 480px;
  position: relative;
  overflow: hidden;
}

.subtitle-main {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
}

.section-two-side-info {
  max-width: 600px;
}

.button-arrow {
  display: flex;
}

.play-button-hover-home {
  z-index: 10;
  color: #0c0c0d;
  background-color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  font-size: 16px;
  transition: all .3s;
  display: flex;
  position: absolute;
  inset: 30px 30px auto auto;
  transform: scale(.85);
}

.play-button-hover-home:hover {
  color: #fff;
  background-color: #0053a0;
}

.play-button-hover-home.bottom-style {
  top: auto;
  bottom: 30px;
}

.icon-features-wrapper {
  background-color: #fbf5fa;
  border-radius: 100%;
  margin-bottom: 15px;
  padding: 28px;
  position: relative;
}

.icon-features-wrapper.small {
  background-color: #fbf5fa00;
  border-radius: 0%;
  padding: 0;
}

.video-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.statistic-wrap {
  grid-row-gap: 30px;
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.text-white {
  color: #fff;
}

.base-container-3 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.dot-wrapper {
  border: 1px solid #afafaf80;
  border-radius: 100px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px;
  display: flex;
}

.icon-features {
  width: 48px;
  height: 48px;
}

.video-wrapper-home-three {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.statistic-wrap-item {
  border-bottom: 1px solid #afafaf80;
  padding-bottom: 30px;
  line-height: 1.4em;
}

.play-icon {
  z-index: 7;
  margin-left: 4px;
  position: relative;
}

.features {
  text-align: center;
  flex-direction: column;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.features.light-style {
  text-align: left;
  background-color: #eff1fc;
  border-radius: 20px;
  align-items: flex-start;
  padding: 30px;
}

.features.light-style.other {
  padding: 12px 23px 23px;
}

.video-overlay {
  background-color: #0000004d;
  background-image: linear-gradient(41deg, #de444199, #fff0 72%);
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 130px 30px 30px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.video-overlay.bottom-style {
  background-image: linear-gradient(41deg, #de444180, #fff0 72%);
  justify-content: flex-end;
}

.button-arrow-element {
  background-color: #0c0c0d;
  border-radius: 100px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  margin-left: -10px;
  display: flex;
}

.deckbenefits {
  z-index: 1;
  padding-top: 110px;
  padding-bottom: 110px;
  position: relative;
}

.column-two {
  width: 50%;
}

.column-two.assymetric {
  flex-direction: column;
  align-items: flex-start;
  width: 60%;
  display: flex;
}

.column-two.assymetric-numbers-block {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 60%;
  display: flex;
}

.two-column-wrapper {
  z-index: 999;
  grid-column-gap: 60px;
  grid-row-gap: 40px;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.no-margin-2 {
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 19px;
}

.button-wrapper-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.values-faq {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.column-one {
  width: 50%;
}

.column-one.assymetric-values-block {
  flex-direction: column;
  justify-content: flex-start;
  width: 40%;
  display: flex;
}

.column-one.assymetric-numbers-block {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 40%;
  display: flex;
}

.base-container-4 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.home-paragraphs-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.in-section-title {
  margin-top: 0;
  margin-bottom: 25px;
}

.in-section-title.no-margin {
  margin-bottom: 0;
}

.section-405 {
  padding-top: 110px;
  padding-bottom: 110px;
  position: relative;
}

.section-405.without-bottom-spacing {
  z-index: 1;
  padding-bottom: 111px;
  padding-left: 30px;
  padding-right: 30px;
}

.div-block-13 {
  height: 1px;
}

.text-color-white-2 {
  color: #fff;
  width: auto;
  font-size: 3rem;
}

.text-meta-2 {
  color: #434343;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  line-height: 140%;
}

.button-2 {
  color: #222;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: .75rem 1rem;
  font-size: 13px;
  font-weight: 400;
  line-height: 110%;
  text-decoration: none;
  transition: background-color .3s, border .3s;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.button-2:hover {
  background-color: #f4f4f4;
}

.button-2.default {
  color: #fff;
  background-color: #0517e0;
}

.button-2.default:hover {
  border-color: #121416;
}

.text-size-medium-2 {
  color: #a1a1a1;
  font-size: 1.125rem;
  line-height: 180%;
}

.text-size-medium-2.text-color-white-2 {
  margin-bottom: 29px;
  font-size: 1.125rem;
  line-height: 120%;
}

.form-3 {
  color: #000;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.modal {
  z-index: 2147483647;
  color: #000;
  background-color: #101220c7;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  min-width: auto;
  height: auto;
  padding: 26px 146px 0;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: scroll;
}

.error-message-color {
  color: #fff;
  text-align: center;
  background-color: #ef3b31;
  height: auto;
  margin-top: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.button-wrapper-3 {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 300px;
  margin-top: 30px;
  display: flex;
}

.button-wrapper-3.product {
  flex-direction: row;
  justify-content: center;
  margin-top: 20px;
}

.image-84 {
  margin-bottom: 45px;
}

.text-field-contact {
  color: #000;
  background-color: #0000;
  border: 1px #eaeaea;
  border-bottom: 1px solid #babdc2;
  width: 100%;
  margin-bottom: 20px;
  margin-left: 6px;
  margin-right: 6px;
  font-size: 14px;
  line-height: 24px;
}

.text-field-contact:hover {
  border-bottom-color: #142335;
}

.text-field-contact.other-text-colour {
  color: #00000078;
}

.div-block-56 {
  justify-content: center;
  width: 100%;
  display: flex;
}

.primary-button {
  color: #fff;
  text-align: center;
  text-transform: lowercase;
  background-color: #0053a0;
  border: 1px solid #0053a0;
  border-radius: 50px;
  padding: 10px 26px;
  font-size: 16px;
  transition: all .3s;
  display: inline-block;
}

.primary-button:hover {
  opacity: 1;
  color: #fff;
  background-color: #0c0c0d;
  border-color: #0c0c0d;
}

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

.left-alignment.smaller-text {
  margin-bottom: 50px;
  font-size: 32px;
}

.flex-form {
  color: #000;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.modal-close {
  color: #fff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 18px;
}

.success-message-color {
  color: #fff;
  background-color: #00b3ac;
}

.text-area {
  color: #000;
  background-color: #fff0;
  border: 1px #000;
  border-bottom: 1px solid #babec3;
  height: 100px;
  min-height: 130px;
  padding-top: 8px;
  font-size: 14px;
}

.text-area:hover {
  border-bottom-color: #142335;
}

.div {
  width: 70%;
  height: 50%;
}

.div.less {
  height: auto;
  overflow: scroll;
}

.form-block-5 {
  width: 100%;
  padding-left: 18px;
  padding-right: 18px;
}

.form-block-5.outline-outside {
  border: 8px solid var(--main);
  background-color: #fff;
  flex-direction: column;
  align-items: center;
  width: auto;
  padding-top: 18px;
  padding-bottom: 15px;
  display: flex;
}

.about-us-banner {
  background-image: linear-gradient(#00000080, #00000080), url('../images/C_1C.webp');
  background-position: 0 0, 100% 100%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  height: 86vh;
  margin-top: 0;
  padding-top: 76px;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

.container-3 {
  justify-content: space-between;
  max-width: 1170px;
  height: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.div-block-96 {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  display: flex;
  position: relative;
}

.title-heading-wrapper {
  overflow: hidden;
}

.title-heading-wrapper.title-home-1 {
  z-index: 2;
  width: auto;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
}

.email-text-2 {
  color: #fff;
  text-align: center;
  background-color: #0517e0ad;
  flex-direction: column;
  align-items: center;
  padding: 18px 63px;
  font-size: 28px;
  display: flex;
}

.italic-text-28 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2em;
}

.h2-class {
  color: #faf8f8;
  font-size: 2rem;
}

.para-intro {
  color: #eeeaea;
}

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

.primary-red-button {
  background-color: var(--main);
  color: #fff;
  letter-spacing: 1px;
  border: 1px #ff6d20;
  padding: 15px 30px;
  font-weight: 400;
  transition-property: all;
  transition-duration: .3s;
}

.primary-red-button:hover {
  color: #010524;
  background-color: #fff;
  border-color: #fff;
}

.section-406 {
  padding: 80px 20px;
  position: relative;
}

.section-406.home-13-get-started {
  background-image: linear-gradient(90deg, #000 12%, #0000), linear-gradient(#00031f24, #00031f24), url('../images/db6089de-b397-4f90-b9dd-b0f68ea3872b.JPG');
  background-position: 0 0, 0 0, 50% 0;
  background-size: auto, auto, cover;
  background-attachment: scroll, scroll, fixed;
  padding: 169px 20px;
}

.base-container-5 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.vertical-inscription {
  color: #ff6d20;
  text-align: center;
  width: 120px;
  margin-top: 0;
  margin-bottom: 0;
  position: absolute;
  inset: 0% auto 0% 10px;
  transform: rotate(-90deg);
}

.vertical-inscription.secondary-sections {
  left: 0;
}

.vertical-inscription.secondary-sections.other {
  left: -22px;
}

.get-started-wrapper {
  grid-row-gap: 30px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.main-title-wrapper {
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 20px;
  padding-left: 0;
  display: flex;
  position: relative;
}

.text-white-2 {
  color: #fff;
}

.red-h2-text {
  color: var(--main);
}

.paragraph-our-benefits {
  color: #fff;
  font-size: 19px;
}

.get-started-text-wrap {
  width: 70%;
}

.main-left-title-wrapper {
  justify-content: flex-start;
  align-items: stretch;
  width: 70%;
  margin-bottom: 60px;
  margin-right: auto;
  padding-left: 0;
  display: flex;
  position: relative;
}

.red-h2-text-2 {
  color: var(--main);
}

.grid-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
}

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

.heading-5 {
  line-height: 1.3rem;
}

.heading-6 {
  border: 1px solid #000;
  padding: 10px;
  line-height: 20px;
}

.div-block-97 {
  background-color: var(--main);
  justify-content: center;
  align-items: center;
  padding: 27px 30px;
  display: flex;
}

.heading-7 {
  color: var(--light-grey);
  text-align: center;
}

.paragraph {
  text-align: center;
}

.text-block-68 {
  color: var(--light-grey);
  text-align: center;
}

.div-block-98 {
  padding-left: 29px;
  padding-right: 29px;
}

.heading-8 {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 500;
}

.hidden {
  display: none;
}

.pages-banner {
  background-color: #0c0c0d;
  background-image: radial-gradient(circle at 0 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle at 100% 100%, #9e8afd66, #fff0 19%);
  justify-content: center;
  align-items: flex-end;
  height: 400px;
  padding: 130px 30px 80px;
  display: flex;
}

.pages-banner.why-choose-us {
  background-image: radial-gradient(circle at 0 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle at 100% 100%, #9e8afd66, #fff0 19%), linear-gradient(#00000075, #00000075), url('../images/343583839_265029435963728_4186480340091923836_n.jpg');
  background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 50% 90%;
  background-repeat: repeat, repeat, repeat, repeat, repeat, no-repeat;
  background-size: auto, auto, auto, auto, auto, cover;
  background-attachment: scroll, scroll, scroll, scroll, scroll, fixed;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  min-height: 540px;
}

.pages-banner.why-choose-us.deck {
  background-image: radial-gradient(circle at 0 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle at 100% 100%, #9e8afd66, #fff0 19%), linear-gradient(#00000057, #00000057), url('../images/A.jpg');
  background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 50% 10%;
  background-size: auto, auto, auto, auto, auto, contain;
  background-attachment: scroll, scroll, scroll, scroll, scroll, fixed;
}

.base-container-6 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}

.base-container-6.banner-pages {
  z-index: 2;
  flex: 1;
  position: relative;
}

.banner-title-wrapper {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding-right: 100px;
  display: flex;
  position: relative;
}

.banner-title {
  color: #fff;
  margin-top: 0;
  font-size: 3rem;
}

.banner-pages-scroll-arrow-wrapper {
  margin-bottom: -10px;
  margin-right: -10px;
  padding: 10px;
  position: absolute;
  inset: auto 0% 0% auto;
  overflow: hidden;
}

.banner-pages-scroll-arrow {
  width: 40px;
  height: 40px;
  transition: transform .5s;
}

.banner-pages-scroll-arrow:hover {
  transform: rotate(45deg);
}

.button-wrapper-4 {
  z-index: 1;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
  display: flex;
  position: relative;
}

.button-wrapper-4.hidden {
  display: none;
}

.base-container-7 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}

.avatars-wrapper {
  flex-direction: row;
  margin-bottom: 10px;
  display: flex;
}

.video-wrapper {
  border-radius: 20px;
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.avatars-image {
  object-fit: cover;
  border-radius: 100px;
  width: 60px;
  height: 60px;
  margin-right: 0;
}

.avatars-image.last-item {
  margin-right: 0;
}

.section-407 {
  padding-top: 110px;
  padding-bottom: 110px;
  position: relative;
}

.section-407.without-bottom-spacing {
  padding-bottom: 0;
  padding-left: 30px;
  padding-right: 30px;
}

.no-margin-3 {
  text-align: left;
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 0;
}

.no-margin-3.bigger-text {
  font-size: 22px;
  font-weight: 400;
}

.no-margin-3.centered {
  text-align: center;
  font-size: 22px;
  font-weight: 400;
}

.div-block-155 {
  width: 100%;
}

.list-2 {
  grid-row-gap: 5px;
  margin-top: 0;
  margin-bottom: 0;
}

.clients-pics-wrapp {
  flex-direction: column;
  align-items: flex-start;
  width: auto;
  display: flex;
}

.div-block-158 {
  grid-column-gap: 39px;
  grid-row-gap: 39px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

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

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

.base-container-8 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}

.div-block-162 {
  background-image: url('../images/2.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
}

.section-408 {
  padding-top: 110px;
  padding-bottom: 110px;
  position: relative;
}

.div-block-163 {
  background-image: url('../images/3.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  height: 300px;
}

.div-block-161 {
  background-image: url('../images/1.png');
  background-position: 0 0;
  background-size: cover;
  border-radius: 20px;
}

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

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

.link-6 {
  color: #fff;
  background-color: #0064b1;
  padding: 13px;
  display: inline;
}

.button-home-5 {
  grid-column-gap: 5px;
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-color: #0064b1;
  background-image: none;
  background-clip: border-box;
  border: 1px solid #fff3;
  border-radius: 0;
  justify-content: center;
  width: 100%;
  height: auto;
  padding: 15px 20px;
  transition: all .35s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-home-5:hover {
  color: #fff;
}

.form-item {
  align-items: flex-start;
  width: 100%;
  font-size: 14px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.form-item:hover {
  border-bottom-color: #fff;
}

.form-item.is-area-text {
  align-items: flex-start;
  margin-bottom: 1.3em;
  padding-top: 1em;
}

.vertical-line {
  background-color: #fff;
  width: 1px;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
}

.vertical-line.bottom-right {
  inset: auto 0% 0% auto;
}

.vertical-line.bottom-left {
  inset: auto auto 0% 0%;
}

.vertical-line.top-right {
  inset: 0% 0% auto auto;
}

.form-error-message {
  background-color: #ffccd5;
  border: 1px solid #c9184a;
  padding: 2em;
}

.clip {
  z-index: 10;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.form-error-link {
  color: #0a223f;
  text-decoration: underline;
}

.section-15 {
  padding: 75px 30px;
}

.contacts-icon {
  color: var(--main);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 15px;
  font-family: "Font Awesome 5 Free Solid 900", Arial, sans-serif;
  line-height: 1.3em;
}

.div-block-130 {
  background-color: #0051ff1a;
  border-radius: 0;
  margin-bottom: 30px;
  padding: 20px 20px 1px;
  font-size: 15px;
}

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

.service-details-sidebar-contacts {
  grid-row-gap: 15px;
  flex-direction: column;
  margin-top: 30px;
  display: flex;
}

.form-success-icon {
  object-fit: contain;
  width: 1em;
  height: 1em;
  margin-bottom: .5em;
  margin-left: auto;
  margin-right: auto;
  font-size: 2.3em;
  display: block;
}

.div-block-131 {
  width: 35%;
  position: sticky;
  top: 158px;
}

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

.accordion-item-2 {
  border: 1px solid #afafaf80;
  border-radius: 20px;
  width: 100%;
  padding: 20px 30px;
  position: static;
}

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

.horizontal-scale-line {
  background-color: #fff;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
}

.horizontal-scale-line.top-line-left {
  inset: 0% auto auto -50%;
}

.horizontal-scale-line.bottom-line-left {
  inset: auto auto 0% -50%;
}

.horizontal-scale-line.top-line-right {
  inset: 0% -50% auto auto;
}

.horizontal-scale-line.bottom-line-right {
  inset: auto -50% 0% auto;
}

.bold-text-11 {
  color: #0064b1;
}

.form-label-2 {
  z-index: 11;
  color: #3b3b3b;
  letter-spacing: .1em;
  -webkit-text-stroke-color: #000;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.2em;
  position: absolute;
  top: .9em;
  left: 0;
}

.form-label-2.black {
  color: #0f0f0f;
}

.btn-hover-bg {
  z-index: 1;
  background-color: #5da9dd;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: auto 0% 0%;
}

.primary-glasi-button {
  color: #000;
  text-align: center;
  background-color: #fff;
  border: 1px solid #fff;
  justify-content: center;
  min-width: 120px;
  height: 49px;
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 500;
  transition: all .45s;
  display: flex;
}

.primary-glasi-button:hover {
  opacity: 1;
  color: #fff;
  background-color: #fff0;
}

.primary-glasi-button.button-form {
  letter-spacing: .1em;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  line-height: 1em;
}

.primary-glasi-button.button-form.blue {
  color: #fff;
  background-color: #0064b1;
  border-style: none;
}

.primary-glasi-button.button-form.blue:hover {
  background-color: #5da9dd;
  border-style: none;
}

.service-details-content {
  align-items: flex-start;
  display: flex;
  position: relative;
}

.contact-link {
  color: #0c0c0d;
  margin-top: 0;
  margin-bottom: 0;
}

.contact-link:hover {
  color: #0053a0;
}

.form-success-title {
  color: #fff;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 2.1em;
  font-weight: 300;
  line-height: 1.2em;
}

.secondary-lines {
  justify-content: flex-start;
  align-items: flex-start;
  position: absolute;
  inset: 0%;
}

.service-details-content-wrapper {
  width: 70%;
  margin-right: 40px;
}

.button-wrapper-5 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.accordion-icon-2 {
  margin-left: 20px;
  font-family: "Font Awesome 5 Free Solid 900", Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
}

.btn-banner-text {
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
}

.btn-banner-text.button-text-bottom {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: absolute;
  bottom: -100%;
}

.vertical-scale-line {
  background-color: #fff;
  width: 1px;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.vertical-scale-line.t-right {
  inset: -50% 0% auto auto;
}

.vertical-scale-line.t-left {
  top: -50%;
}

.vertical-scale-line.b-right {
  inset: auto 0% -50% auto;
}

.vertical-scale-line.b-left {
  margin-left: 0;
  inset: auto auto -50% 0%;
}

.form-field {
  z-index: 5;
  color: #000;
  background-color: #0000;
  border: 1px solid #0000;
  border-bottom-color: #5d5959;
  min-height: 2.5em;
  margin-top: 0;
  margin-bottom: 9px;
  padding: 0 0 0 7.2em;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.1em;
  transition: border-color .5s;
  position: relative;
}

.form-field:hover {
  border-bottom-color: #0c389f;
}

.form-field:focus {
  background-color: #0000;
  border-color: #0000 #0000 #1b243ab3;
}

.form-field:focus-visible, .form-field[data-wf-focus-visible] {
  font-size: 13px;
}

.form-field::placeholder {
  color: #333;
  font-size: 12px;
  font-weight: 300;
}

.form-field.other {
  color: #000;
  border-bottom-color: #5d5959;
  min-height: 2.5em;
  margin-bottom: 7px;
  padding-left: 4.5em;
  font-size: 13px;
  line-height: 16px;
}

.form-field.other:hover {
  border-bottom-color: #000;
}

.form-field.other:focus-visible, .form-field.other[data-wf-focus-visible] {
  font-size: 13px;
}

.form-field.other::placeholder {
  font-size: 12px;
}

.form-field.text-area {
  border-bottom-color: #5d5959;
  min-height: 6em;
  padding-top: 1.4em;
  padding-left: 0;
}

.form-field.text-area:hover {
  border-bottom-color: #000;
}

.form-field.text-area::placeholder {
  font-size: 12px;
}

.form-field.address {
  padding-left: 6.1em;
}

.form-field.address::placeholder {
  font-size: 12px;
}

.btn-line-animation {
  z-index: 2;
  position: absolute;
  inset: 0%;
}

.base-container-9 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}

.accordion-title-2 {
  margin-top: 0;
  margin-bottom: 0;
}

.contacts-detail {
  padding-left: 4px;
  display: flex;
}

.rich-text-style.negative-top-bottom {
  text-align: left;
  flex-flow: column;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 10px;
  display: block;
}

.rich-text-style.negative-top-bottom p {
  justify-content: flex-start;
  align-items: center;
  font-size: 1rem;
  line-height: 160%;
  display: block;
}

.form-error-paragraph {
  color: #191c1f;
  line-height: 1.6;
}

.accordion-wrap-one-column {
  grid-row-gap: 20px;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.form-inner {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  margin-top: 15px;
  display: flex;
}

.form-inner.hidden {
  margin-top: 12px;
  margin-bottom: 12px;
  display: flex;
}

.form-success-message-2 {
  color: #fff;
  background-color: #45934f;
  border: 1px solid #f1fff8;
  width: 100%;
  padding: 5em 3em;
}

.service-details-sidebar-wrapper {
  background-color: #f3f3f3;
  border-radius: 0;
  flex-direction: column;
  align-items: flex-start;
  width: auto;
  padding: 20px;
  display: flex;
  position: sticky;
  top: 120px;
}

.form-block-6 {
  width: 100%;
  margin-bottom: 45px;
}

.horizontal-line {
  background-color: #fff;
  width: 10px;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
}

.horizontal-line.top-r {
  inset: 0% 0% auto auto;
}

.horizontal-line.bottom-r {
  inset: auto 0% 0% auto;
}

.horizontal-line.bottom-l {
  inset: auto auto 0% 0%;
}

.heading-11 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.bold-text-12 {
  font-size: 1.5rem;
}

.dropdown-link {
  opacity: 1;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
  transition: opacity .25s cubic-bezier(.215, .61, .355, 1);
}

.dropdown-link:hover {
  opacity: .65;
}

.dropdown-link.w--current {
  color: #fff;
}

.icon-dropdown {
  width: 8px;
  height: 4px;
  margin-left: 4px;
  display: block;
}

.dropdown-list-block {
  padding: 14px;
}

.dropdown-toggle {
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  display: flex;
}

.dropdown-toggle:hover {
  color: #000;
}

.text-button {
  color: #101b22;
  text-align: center;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
}

.link-27 {
  color: var(--dark-grey);
  text-decoration: none;
}

.dropdown-list {
  padding-bottom: 0;
}

.dropdown-list.w--open {
  background-color: var(--main);
  left: -54px;
  overflow: hidden;
}

.heading-12 {
  font-size: 1.4rem;
}

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

.link-28 {
  color: #000;
  background-color: #ccd0ff9e;
  width: auto;
  padding: 10px 20px;
  font-weight: 600;
  display: inline;
}

.link-29 {
  color: var(--main);
  border: 2px #000;
  padding: 6px;
  font-size: 1.2rem;
  font-weight: 600;
  display: inline-flex;
}

.div-block-164 {
  border: 2px solid var(--main);
  padding: 15px;
}

.div-block-164._50 {
  width: 50%;
}

.div-block-165 {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  display: flex;
}

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

.paragraph-2 {
  text-align: center;
  line-height: 1.2rem;
}

.heading-14 {
  text-align: center;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.bold-text-13 {
  font-size: 2rem;
}

.heading-15 {
  font-size: 1.3rem;
}

.div-block-167 {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  flex-flow: column;
  width: 70%;
  margin-right: 40px;
  display: flex;
}

.centered {
  text-align: center;
}

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

.bold-text-14 {
  line-height: 1.2rem;
}

.bold-text-15 {
  font-size: 2rem;
  line-height: 1.2rem;
}

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

.image-85 {
  display: block;
}

@media screen and (min-width: 1280px) {
  .gallery-medium-pink-circle {
    background-color: #ff7162;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    inset: 50% auto 0% 0%;
  }

  .gallery-medium-blue-circle {
    background-color: #253b70;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    inset: auto 0% 20% auto;
  }

  .base-container {
    z-index: 7;
    width: 100%;
  }

  .section, .faq {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .main-features-wrapper.second-style {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .video-wrapper-home-three {
    grid-template-columns: 750px 1fr;
  }

  .deckbenefits {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .two-column-wrapper {
    grid-column-gap: 100px;
  }

  .section-405 {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .container-3 {
    max-width: 1200px;
    padding-left: 0;
    padding-right: 0;
  }

  .title-heading-wrapper {
    margin-top: 35px;
    margin-bottom: 35px;
  }

  .title-heading-wrapper.title-home-1 {
    overflow: visible;
  }

  .section-406 {
    padding-top: 80px;
    padding-bottom: 130px;
  }

  .main-left-title-wrapper {
    width: 60%;
  }

  .pages-banner {
    padding-top: 170px;
    padding-bottom: 110px;
  }

  .pages-banner.why-choose-us {
    min-height: 600px;
  }

  .section-407, .section-408 {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .div-block-130 {
    padding-bottom: 0;
  }

  .div-block-137 {
    margin-top: 12px;
    padding-bottom: 30px;
    display: flex;
  }

  .form-inner.hidden {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1440px) {
  .navbar-logo-image {
    width: 200px;
  }

  .padding-large {
    padding: 3rem;
  }

  .section-styleguide {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

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

  .heading-small {
    font-size: 4.5rem;
  }

  .heading-large {
    font-size: 6rem;
  }

  .heading-xlarge {
    font-size: 8rem;
  }

  .licensing-grid, .section-changelog-left, .changelog-grid-item {
    padding: 4rem;
  }

  .home-about-content-inner {
    padding: 8rem 5rem;
  }

  .cta-component {
    grid-template-columns: .75fr .25fr;
  }

  .cta-content {
    padding: 8rem 5rem;
  }

  .footer-grid-left, .footer-grid-right {
    padding: 4rem;
  }

  .about-hero-content-inner, .about-expertise-content-inner {
    padding: 8rem 5rem;
  }

  .about-values-grid-right {
    padding: 4rem;
  }

  .services-hero-content-inner, .service-content-inner {
    padding: 8rem 5rem;
  }

  .project-content-top {
    padding: 4rem;
  }

  .gallery-wrap {
    margin-top: 20px;
  }

  .gallery-small-pink-circle {
    display: block;
    right: 4%;
  }

  .small-image {
    height: 300px;
  }

  .gallery-medium-pink-circle {
    left: 3%;
  }

  .gallery-medium-blue-circle {
    right: 3%;
  }

  .div-block-6 {
    margin-bottom: 10px;
  }

  .video-wrapper-home-three {
    grid-template-columns: 2.7fr 1fr;
  }
}

@media screen and (min-width: 1920px) {
  .gallery-small-pink-circle {
    right: 7%;
  }

  .gallery-blue-circle {
    left: 7%;
  }

  .gallery-medium-pink-circle {
    left: 9%;
  }

  .gallery-medium-blue-circle {
    right: 11%;
  }

  .base-container {
    max-width: 90vw;
  }

  .base-container-2 {
    max-width: 1400px;
  }

  .main-features-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .base-container-3 {
    max-width: 1400px;
  }

  .video-overlay {
    padding-right: 150px;
  }

  .two-column-wrapper {
    grid-column-gap: 120px;
    grid-row-gap: 120px;
  }

  .base-container-4 {
    max-width: 1400px;
  }

  .container-3 {
    max-width: 1800px;
  }

  .base-container-6, .base-container-7, .base-container-8, .base-container-9 {
    max-width: 1400px;
  }
}

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

  h2 {
    font-size: 2.5rem;
  }

  .styleguide-menu-toggle {
    cursor: pointer;
    width: 30px;
    height: 20px;
    display: block;
    position: relative;
  }

  .button.default.large {
    padding: .8rem;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .margin-huge {
    margin: 5rem;
  }

  .max-width-large {
    max-width: none;
  }

  .margin-large {
    margin: 2.5rem;
  }

  .max-width-full-tablet {
    width: 100%;
    max-width: none;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .padding-huge {
    padding: 5rem;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-xxlarge {
    margin: 4rem;
  }

  .padding-xxhuge {
    padding: 8rem;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .margin-medium {
    margin: 1.5rem;
  }

  .margin-xlarge {
    margin: 3rem;
  }

  .padding-xlarge {
    padding: 3rem;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .padding-xxlarge {
    padding: 4rem;
  }

  .margin-xxhuge {
    margin: 8rem;
  }

  .hide-tablet {
    display: none;
  }

  .main-wrapper {
    border-radius: 4rem;
    min-height: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .show-tablet {
    display: block;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .page-padding {
    padding-left: 1.7rem;
    padding-right: 1.7rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .section-styleguide {
    grid-column-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .heading-medium {
    font-size: 4rem;
  }

  .text-size-xlarge {
    font-size: 1.5rem;
  }

  .block-quote {
    background-position: 0 57px;
    background-size: 40px;
  }

  .heading-small {
    font-size: 4rem;
  }

  .card-padding, .card-padding.large {
    padding: 2.5rem;
  }

  .card-padding.xlarge {
    padding-top: 2.1rem;
    padding-bottom: 2.1rem;
  }

  .card-padding.xlarge.margin-right {
    padding-top: .9rem;
    padding-bottom: .9rem;
  }

  .text-size-regular.text-color-white {
    width: auto;
    font-size: .9rem;
  }

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

  .styleguide-elements {
    margin-left: 0;
    padding-top: 3rem;
  }

  .text-size-medium.text-color-white {
    width: auto;
  }

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

  .text-meta {
    color: var(--dark-slate-grey);
  }

  .text-meta.text-align-center.other {
    color: var(--dark-grey);
  }

  .text-meta.text-color-white.white {
    color: var(--light-grey);
  }

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

  .heading-xlarge {
    font-size: 6rem;
  }

  .styleguide-nav-wrapper {
    border-left: 1px solid #e8e8e8;
    border-right-style: none;
    border-right-width: 0;
    left: auto;
    right: 0;
    transform: translate(100%);
  }

  .styleguide-menu-toggle-line {
    transform-origin: 100%;
    background-color: #191919;
    width: 30px;
    height: 1.5px;
    padding-bottom: 0;
    padding-right: 0;
    position: absolute;
    right: 0;
  }

  .styleguide-menu-toggle-line._01 {
    top: 0;
  }

  .styleguide-menu-toggle-line._02 {
    top: 50%;
  }

  .styleguide-navbar-inner {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .styleguide-navbar {
    z-index: 5;
    background-color: #fff;
    padding-top: 2rem;
    padding-bottom: 2rem;
    display: block;
    position: fixed;
    inset: 0% 0% auto;
  }

  .section-licensing {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .section-licensing-left {
    padding: 3rem;
    position: static;
  }

  .licensing-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
    padding: 3rem;
  }

  .section-changelog {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .section-changelog-left {
    padding: 3rem;
    position: static;
  }

  .changelog-grid-item {
    padding: 3rem;
  }

  .section-404 {
    padding: 4rem;
  }

  .navbar-wrapper {
    height: 100%;
  }

  .header {
    height: 80px;
  }

  .mobile-menu {
    display: none;
  }

  .navbar, .navbar-inner {
    height: 100%;
  }

  .navbar-right {
    grid-template-columns: 1fr 1px auto;
  }

  .mobile-menu-toggle {
    cursor: pointer;
    width: 30px;
    height: 20px;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    display: block;
    position: relative;
  }

  .navbar-right-button {
    height: 80px;
  }

  .mobile-menu-toggle-line {
    background-color: var(--dark-slate-grey);
    transform-origin: 100%;
    width: 30px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
    position: absolute;
    right: 0;
  }

  .mobile-menu-toggle-line._01 {
    top: 0;
  }

  .mobile-menu-toggle-line._02 {
    top: 50%;
  }

  .mobile-menu-toggle-line._03 {
    bottom: 0;
  }

  .mobile-menu-wrapper {
    width: 100%;
  }

  .mobile-menu-nav {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .mobile-menu-nav-link {
    width: 100%;
    color: var(--dark-grey);
    letter-spacing: 1px;
    text-transform: uppercase;
    justify-content: center;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: .85rem;
    font-weight: 600;
    transition: background-color .3s;
    display: flex;
  }

  .mobile-menu-nav-link:hover {
    background-color: var(--light-grey);
    color: var(--dark-slate-grey);
  }

  .navbar-menu {
    display: none;
  }

  .mobile-nav-button {
    background-color: var(--main);
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1rem 2rem;
    font-size: .85rem;
    font-weight: 600;
    transition: background-color .3s;
    display: flex;
  }

  .mobile-nav-button:hover {
    background-color: var(--dark-slate-grey);
  }

  .hero-slider-arrow, .hero-slider-arrow.is-left {
    z-index: 99;
  }

  .home-hero-image-slider {
    width: 100vw;
    max-width: 100%;
    min-height: 70vh;
  }

  .home-hero-slide-wrapper {
    grid-template-rows: 60% 40%;
  }

  .home-hero-content {
    width: 100%;
  }

  .home-hero-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .home-hero-content-inner {
    justify-content: flex-end;
    padding: 5rem 1.8rem .9rem;
  }

  .home-hero-content-inner._70 {
    padding-right: .6rem;
  }

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

  .services-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .services-row {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1px 1fr 1px;
    width: 100%;
  }

  .section-home-about {
    height: 400px;
  }

  .home-about-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .line-horizontal {
    height: auto;
  }

  .home-about-content-inner {
    padding: 5rem 3rem;
  }

  .project-mask {
    width: 65%;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .testimonial-content-left {
    padding-bottom: .1rem;
    padding-left: 1.7rem;
    padding-right: 1.7rem;
    position: static;
  }

  .testimonial-content-right {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1px;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .team-list {
    grid-column-gap: 2rem;
  }

  .section-cta {
    height: 500px;
  }

  .cta-component {
    grid-template-columns: 1fr;
    align-content: center;
    justify-items: center;
  }

  .cta-content {
    padding: 4rem 1.8rem;
  }

  .text-color-white {
    width: auto;
    font-size: 1.8rem;
  }

  .cta-button-group {
    flex: none;
  }

  .footer {
    display: block;
  }

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

  .footer-grid-left {
    padding: 3rem;
  }

  .footer-grid-right {
    padding: 3rem .9rem;
  }

  .footer-column.no-margin {
    padding-left: 0;
    padding-right: 0;
  }

  .footer-bottom {
    flex-direction: column-reverse;
  }

  .footer-bottom-left {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .footer-bottom-nav {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1px 1fr 1px 1fr auto;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .footer-bottom-nav-item {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .about-hero-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .about-hero-content-inner {
    padding: 5rem 3rem;
  }

  .about-hero-image-wrapper {
    min-height: 20rem;
  }

  .about-info-grid {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .about-expertise-grid {
    grid-template-columns: .75fr 1fr;
    grid-auto-flow: row;
    height: 100%;
    min-height: auto;
  }

  .about-expertise-content-inner {
    width: 100vw;
    padding: 4.5rem 1.3rem;
  }

  .about-stats-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .stats {
    padding: 1.9rem;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-values-grid-left {
    position: static;
  }

  .home-process-image-wrapper {
    height: 50vh;
  }

  .process-image-cover {
    object-position: 50% 70%;
  }

  .about-values-grid-right {
    min-height: auto;
    padding: 5rem 2rem;
  }

  .about-values-item {
    position: static;
  }

  .about-values-item._02 {
    top: 50%;
  }

  .about-values-item._03 {
    position: static;
  }

  .services-hero-image-wrapper {
    justify-content: center;
    align-items: center;
    height: 100vh;
    min-height: auto;
    display: flex;
  }

  .section-services-hero {
    height: 100vh;
  }

  .services-hero-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    justify-content: center;
    align-items: center;
    min-height: auto;
    display: flex;
  }

  .home-services-content.about {
    width: auto;
  }

  .services-hero-content-inner {
    padding: 5rem 3rem;
  }

  .service-grid-header {
    grid-template-columns: 1fr;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .service-grid-header._2 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .service-overview {
    grid-template-columns: 1fr;
  }

  .service-image-slider {
    width: 100vw;
    max-width: 100%;
    min-height: 50vh;
  }

  .service-content-inner {
    padding: 5rem 2rem;
  }

  .service-slide-wrapper {
    grid-template-rows: 60% 40%;
  }

  .project-content-grid {
    grid-template-columns: 1fr;
  }

  .project-content-image-wrapper {
    height: 50vw;
    position: static;
  }

  .project-content-top {
    padding: 3rem 2rem;
  }

  .project-content-overview {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-column-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .project-item-content-top {
    padding-left: 2rem;
    padding-right: 2rem;
  }

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

  .project-overview-grid {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .project-content-wrapper {
    position: static;
  }

  .project-image-gallery {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .card-detail-content {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .project-details-row {
    flex: 1;
    grid-template-rows: 1fr auto;
    grid-template-columns: 1fr 1px 1fr 1px;
  }

  .project-details-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    display: flex;
  }

  .contact-component {
    grid-column-gap: 1.25rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
    display: block;
  }

  .service-detail-component {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
    padding-top: 6rem;
  }

  .service-detail-content {
    max-width: none;
    margin-left: 5%;
    margin-right: 5%;
  }

  .service-detail-image {
    height: auto;
    max-height: none;
  }

  .section-home-projects {
    height: 500px;
  }

  .services-hero-image-slider {
    width: 100vw;
    max-width: 100%;
    min-height: 70vh;
  }

  .gallery-wrap {
    margin-top: 30px;
  }

  .gallery-small-pink-circle {
    display: none;
  }

  .large-image {
    height: 360px;
  }

  .gallery-blue-circle {
    display: none;
  }

  .lightbox-image, .small-image {
    height: 180px;
  }

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

  .div-block-5 {
    align-items: center;
  }

  .div-block-7 {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
    width: auto;
  }

  .image-4 {
    max-width: 70%;
  }

  .link-block-3 {
    justify-content: center;
    display: flex;
  }

  .client-logo-one-box {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  ._30 {
    width: 60%;
    padding-top: 75px;
    display: flex;
  }

  .accordion-wrapper.service-details {
    margin-top: 40px;
  }

  .section-title-wrapper {
    max-width: 560px;
  }

  .base-container-2 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .section, .faq {
    padding: 64px 25px;
  }

  .main-features-wrapper, .main-features-wrapper.second-style {
    grid-template-columns: 1fr 1fr;
  }

  .main-features-wrapper.second-style.space-down {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    margin-bottom: 0;
  }

  .arrow-button {
    display: block;
  }

  .video-wrapper-bigger {
    height: 400px;
  }

  .statistic-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: row;
    justify-content: center;
    display: flex;
  }

  .base-container-3 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .video-wrapper-home-three {
    grid-template-columns: 2fr;
  }

  .statistic-wrap-item {
    text-align: center;
    border-bottom-style: none;
    width: 47%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .features.light-style.other {
    padding: 6px 12px 14px;
  }

  .deckbenefits {
    padding: 64px 25px;
  }

  .column-two, .column-two.assymetric, .column-two.assymetric-numbers-block {
    width: 100%;
  }

  .two-column-wrapper {
    grid-column-gap: 60px;
    flex-direction: column;
  }

  .column-one, .column-one.assymetric-values-block {
    width: 100%;
  }

  .column-one.assymetric-numbers-block {
    flex-direction: column-reverse;
    width: 100%;
  }

  .base-container-4 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .section-405 {
    padding: 64px 25px;
  }

  .text-color-white-2 {
    width: auto;
    margin-bottom: 30px;
    font-size: 1.8rem;
  }

  .text-meta-2 {
    color: #434343;
  }

  .text-size-medium-2.text-color-white-2 {
    width: 70%;
  }

  .modal {
    padding-top: 48px;
    padding-left: 11px;
    padding-right: 11px;
    display: none;
  }

  .image-84 {
    max-width: 60%;
  }

  .primary-button {
    display: block;
  }

  .left-alignment.smaller-text {
    font-size: 26px;
  }

  .about-us-banner {
    background-image: linear-gradient(#00000087, #00000087), url('../images/C_1C.webp');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .container-3 {
    padding-left: 24px;
    padding-right: 24px;
  }

  .div-block-96 {
    width: auto;
    margin-left: 3px;
    margin-right: 3px;
  }

  .title-heading-wrapper {
    margin-top: 35px;
    margin-bottom: 35px;
  }

  .title-heading-wrapper.title-home-1 {
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .email-text-2 {
    padding-left: 14px;
    padding-right: 14px;
  }

  .section-406 {
    padding-bottom: 30px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .section-406.home-13-get-started {
    padding: 97px 25px;
  }

  .base-container-5 {
    padding-left: 0;
    padding-right: 0;
  }

  .vertical-inscription {
    text-align: left;
    position: static;
    transform: rotate(0);
  }

  .main-title-wrapper {
    flex-direction: column;
    padding-left: 0;
  }

  .paragraph-our-benefits {
    font-size: 16px;
  }

  .get-started-text-wrap {
    width: auto;
  }

  .main-left-title-wrapper {
    flex-direction: column;
    width: 85%;
    margin-bottom: 16px;
    padding-left: 0;
  }

  .div-block-97 {
    padding-left: 24px;
    padding-right: 24px;
  }

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

  .text-block-68 {
    text-align: center;
    font-size: .8rem;
    line-height: 22px;
  }

  .heading-9 {
    font-size: .9rem;
  }

  .pages-banner.why-choose-us {
    min-height: 480px;
  }

  .base-container-6 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .button-wrapper-4 {
    margin-top: 25px;
  }

  .base-container-7 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .video-wrapper {
    height: 400px;
  }

  .section-407 {
    padding: 40px 25px;
  }

  .base-container-8 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .section-408 {
    padding: 40px 25px;
  }

  .form-item {
    font-size: 1.1em;
  }

  .form-item.is-area-text {
    margin-bottom: .4em;
  }

  .section-15 {
    padding-top: 24px;
  }

  .div-block-130 {
    margin-bottom: 0;
  }

  .div-block-131 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    order: -1;
    width: 100%;
    margin-top: 20px;
    display: flex;
    position: static;
  }

  .form-label-2 {
    font-size: .6em;
    font-weight: 500;
    top: 1.2em;
  }

  .service-details-content {
    flex-flow: column;
  }

  .secondary-lines {
    width: 100%;
  }

  .service-details-content-wrapper {
    width: 100%;
    margin-right: 20px;
  }

  .form-field {
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 5.8em;
    font-size: 14px;
    line-height: 14px;
  }

  .form-field.other {
    padding-left: 4.4em;
  }

  .form-field.text-area {
    min-height: 6em;
    padding-top: .6em;
  }

  .btn-line-animation {
    width: 100%;
  }

  .base-container-9 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .rich-text-style.negative-top-bottom {
    margin-top: 24px;
    margin-bottom: 0;
  }

  .service-details-sidebar-wrapper {
    width: 40%;
    padding: 18px;
    top: 80px;
  }

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

  .dropdown, .dropdown-list-block {
    width: 100%;
  }

  .dropdown-toggle {
    width: 100%;
    padding: 20px 10px;
  }

  .text-button {
    font-size: 12px;
  }

  .dropdown-list.w--open {
    left: 0;
  }
}

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

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    margin-bottom: 10px;
    line-height: 110%;
  }

  .styleguide-menu-toggle {
    cursor: pointer;
    width: 30px;
    height: 20px;
    display: block;
    position: relative;
  }

  .button.default.large {
    height: 100%;
    padding: .7rem;
  }

  .hide-mobile-landscape {
    display: none;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .margin-large {
    margin: 1.5rem;
  }

  .show-mobile-landscape {
    display: block;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .padding-large {
    padding: 1.5rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .max-width-full-mobile-landscape {
    width: 100%;
    max-width: none;
  }

  .padding-xxhuge {
    padding: 4.5rem;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .margin-medium {
    margin: 1.25rem;
  }

  .margin-xlarge {
    margin: 2rem;
  }

  .padding-xlarge {
    padding: 2rem;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-medium {
    padding: 1.25rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .margin-xxhuge {
    margin: 4.5rem;
  }

  .main-wrapper {
    border-radius: 3rem;
    height: auto;
    min-height: auto;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .page-padding {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

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

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

  .text-rich-text blockquote {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    font-size: 1.75rem;
  }

  .heading-medium {
    font-size: 3.25rem;
  }

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

  .heading-h4 {
    font-size: 1.5rem;
  }

  .block-quote {
    background-position: 0 38px;
    background-size: 30px;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 3rem;
    font-size: 1.5rem;
  }

  .heading-small {
    font-size: 3rem;
  }

  .styleguide-4-col {
    grid-template-columns: 1fr 1fr;
  }

  .card-padding, .card-padding.large {
    padding: 2rem;
  }

  .card-padding.xlarge {
    padding: 1.7rem 2rem;
  }

  .card-padding.small {
    padding: 1.5rem;
  }

  .form-field-wrapper {
    margin-bottom: 1.5rem;
  }

  .text-size-regular.text-color-white {
    width: auto;
    margin-bottom: 47px;
  }

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

  .heading-h3 {
    font-size: 1.75rem;
  }

  .heading-h3.uppercase {
    font-size: 2rem;
  }

  .text-size-medium.text-color-white {
    width: auto;
    font-size: 1rem;
  }

  .styleguide-2-col {
    grid-template-columns: 1fr 1fr;
  }

  .heading-large {
    font-size: 4rem;
  }

  .styleguide-3-col {
    grid-template-columns: 1fr 1fr;
  }

  .heading-h2 {
    font-size: 2.25rem;
  }

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

  .section-licensing-left {
    padding: 2rem;
  }

  .licensing-grid {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    padding: 2rem;
  }

  .section-changelog-left {
    padding: 2rem;
  }

  .changelog-grid-item {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .section-404 {
    padding: 3rem;
  }

  .mobile-menu-toggle {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .hero-image-mask {
    height: 100%;
  }

  .home-hero-slide-image-wrapper {
    min-height: 100%;
  }

  .hero-slider-arrow {
    width: 5rem;
    height: 5rem;
    display: none;
    inset: auto 0% 0% auto;
  }

  .hero-slider-arrow.is-left {
    display: none;
    inset: auto 11% 0% auto;
  }

  .home-hero-image-slider {
    min-height: auto;
    max-height: none;
  }

  .home-hero-slide-image {
    width: auto;
    max-width: none;
  }

  .home-hero-slide-wrapper {
    grid-template-rows: 70% 30%;
    min-height: 100%;
  }

  .home-hero-content {
    justify-content: space-around;
    height: auto;
    padding-bottom: 0;
  }

  .section-home-hero {
    height: auto;
    padding-top: 74px;
    padding-bottom: 33px;
  }

  .home-hero-grid {
    grid-template-rows: auto;
    height: 500px;
  }

  .home-hero-content-inner {
    padding: 15vh 5vw 0;
  }

  .home-hero-content-inner._70 {
    margin-bottom: 24px;
  }

  .section-home-services {
    padding-top: 0;
  }

  .services-row {
    flex: 1;
    grid-template-columns: 1fr;
    justify-items: stretch;
    width: 100%;
  }

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

  .home-about-grid {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .home-about-content-inner {
    padding: 0 5vw;
  }

  .project-slider-wrapper {
    padding-bottom: 3.1rem;
  }

  .project-card-slider {
    height: 80%;
  }

  .project-mask {
    width: 80vw;
  }

  .slide-arrow {
    width: 5rem;
    height: 5rem;
    margin-left: -5rem;
    bottom: -2rem;
  }

  .slide-arrow.right {
    margin-right: -5rem;
  }

  .project-card-wrapper {
    height: 300px;
    min-height: auto;
    max-height: none;
  }

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

  .testimonial-content-left {
    padding: 8vh 5vw 0;
    position: static;
  }

  .testimonial-content-right {
    grid-template-columns: 1fr;
  }

  .testimonial-client {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .testimonial-client-image-wrapper {
    margin-bottom: 1rem;
    margin-right: 0;
  }

  .team-list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .team-image-wrapper {
    height: 100%;
    padding-top: 70%;
  }

  .cta-component {
    flex-direction: column;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .cta-content {
    padding: 8vh 5vw;
  }

  .text-color-white {
    width: auto;
    font-size: 1.6rem;
  }

  .cta-button-group {
    justify-content: flex-start;
    width: 100%;
  }

  .footer-grid-left {
    padding: 2rem;
  }

  .footer-grid-right {
    padding: 5vh 5vw;
  }

  .footer-grid-right-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-column {
    border-right-style: none;
    padding-left: 0;
    padding-right: 0;
  }

  .about-hero-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-content-inner {
    padding: 8vh 5vw;
  }

  .about-info-grid {
    flex: 1;
    grid-template-columns: 1fr;
    justify-items: stretch;
    width: 100%;
  }

  .about-expertise-grid {
    grid-row-gap: 0rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .about-expertise-image-cover.image-1 {
    min-height: 20rem;
  }

  .about-expertise-content-inner, .about-stats-content {
    padding: 8vh 5vw;
  }

  .about-values-grid-right {
    padding: 6vh 5vw;
  }

  .about-values-item-inner {
    padding: 3vh 5vw;
  }

  .section-services-hero {
    height: auto;
    display: block;
  }

  .services-hero-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .home-services-content {
    width: 100%;
  }

  .home-services-content._2 {
    flex-flow: column;
    height: auto;
  }

  .services-hero-content-inner {
    padding: 8vh 5vw;
  }

  .services-hero-content-inner.about {
    min-height: 300px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .service-grid-header {
    grid-template-columns: 1fr;
    padding: 8vh 5vw;
  }

  .service-image-slider {
    min-height: 40vh;
    max-height: 20rem;
  }

  .service-content-inner {
    padding: 6vh 5vw 8vh;
  }

  .service-slide-wrapper {
    grid-template-rows: 70% 30%;
  }

  .service-slider-arrow {
    width: 5rem;
    height: 5rem;
  }

  .service-slider-arrow.is-left {
    right: 5rem;
  }

  .project-content-top {
    padding: 2rem;
  }

  .project-content-overview {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

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

  .project-item {
    grid-row-gap: 0rem;
    grid-template-columns: 1fr;
  }

  .single-project-image-wrapper {
    height: 300px;
    padding-top: 0%;
  }

  .project-item-content-top {
    padding: 2rem;
  }

  .header56_component {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr;
  }

  .project-image-gallery {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .card-detail-content {
    padding: 3vh 5vw;
  }

  .detail-card {
    grid-template-columns: 1fr;
  }

  .project-details-row {
    flex: 1;
    grid-template-columns: 1fr;
    justify-items: stretch;
    width: 100%;
  }

  .contact-component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .field-label {
    margin-bottom: -.1rem;
  }

  .service-detail-component {
    padding-top: 4rem;
  }

  .section-home-projects {
    height: auto;
    padding-top: 49px;
    padding-bottom: 0;
  }

  .services-hero-image-slider {
    height: 100%;
    min-height: auto;
    max-height: none;
  }

  .services-hero-slide-1 {
    height: 100%;
  }

  .gallery-pink-circle {
    display: block;
    top: 2%;
  }

  .gallery-wrap {
    flex-wrap: wrap;
  }

  .large-image {
    height: 500px;
  }

  .second-images-wrap {
    width: 100%;
    margin-top: 20px;
  }

  .lightbox-image {
    height: 500px;
  }

  .gallery-blue-small-circle {
    top: 2%;
  }

  .small-image {
    height: 500px;
  }

  .first-images-wrap {
    width: 100%;
  }

  .third-images-wrap {
    width: 100%;
    margin-top: 20px;
  }

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

  .div-block-7 {
    align-items: center;
  }

  .image-4 {
    max-width: 75%;
  }

  .div-block-10 {
    width: auto;
    margin-bottom: 20px;
  }

  .client-logo-one-box {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  ._30 {
    width: auto;
    padding: 0;
  }

  .accordion-wrapper {
    flex-wrap: wrap;
  }

  .section-title {
    text-align: left;
  }

  .section-title-wrapper {
    margin-bottom: 40px;
  }

  .accordion-wrap {
    width: 100%;
    margin-right: 0;
  }

  .section, .faq {
    padding-top: 51px;
    padding-bottom: 60px;
  }

  .main-features-wrapper.second-style {
    grid-template-columns: 1fr;
  }

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

  .home-3-image-wrapper {
    display: block;
  }

  .section-two-side-title-wrapp {
    grid-row-gap: 20px;
    margin-bottom: 40px;
  }

  .no-margin {
    font-size: 14px;
    line-height: 20px;
  }

  .video-wrapper-bigger {
    height: 360px;
  }

  .icon-features-wrapper {
    margin-bottom: 5px;
  }

  .statistic-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-wrap: wrap;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .dot-wrapper {
    font-size: 14px;
  }

  .video-wrapper-home-three {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-items: center;
  }

  .statistic-wrap-item {
    width: 100%;
  }

  .features.light-style {
    padding: 16px;
  }

  .features.light-style.other {
    justify-content: center;
    align-items: center;
  }

  .deckbenefits {
    padding-top: 51px;
    padding-bottom: 60px;
  }

  .two-column-wrapper {
    flex-direction: column;
  }

  .no-margin-2 {
    font-size: 14px;
  }

  .button-wrapper-2 {
    margin-top: 20px;
  }

  .home-paragraphs-wrapper {
    grid-column-gap: 29px;
  }

  .in-section-title {
    font-size: 26px;
  }

  .section-405 {
    padding-top: 51px;
    padding-bottom: 60px;
  }

  .section-405.without-bottom-spacing {
    padding-top: 49px;
  }

  .text-color-white-2 {
    width: auto;
    font-size: 2rem;
  }

  .text-size-medium-2.text-color-white-2 {
    width: auto;
    font-size: 1rem;
  }

  .modal {
    padding-top: 47px;
    padding-left: 0;
    padding-right: 0;
    display: none;
  }

  .button-wrapper-3.product {
    margin-top: 0;
  }

  .image-84 {
    max-width: 40%;
    margin-bottom: 16px;
  }

  .left-alignment.smaller-text {
    margin-bottom: 11px;
    font-size: 26px;
  }

  .div.less {
    width: 85%;
  }

  .form-block-5.outline-outside {
    padding-left: 10px;
    padding-right: 10px;
  }

  .about-us-banner {
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
  }

  .container-3 {
    justify-content: flex-start;
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-96 {
    width: auto;
  }

  .title-heading-wrapper.title-home-1 {
    width: auto;
    margin-bottom: 29px;
  }

  .email-text-2 {
    font-size: 22px;
  }

  .section-406 {
    padding: 35px 20px 60px;
  }

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

  .vertical-inscription.secondary-sections {
    text-align: left;
  }

  .get-started-wrapper {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .main-title-wrapper {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .text-white-2, .paragraph-our-benefits {
    text-align: left;
  }

  .get-started-text-wrap {
    width: 100%;
  }

  .main-left-title-wrapper {
    text-align: center;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 30px;
  }

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

  .heading-9 {
    font-size: .6rem;
    font-weight: 500;
  }

  .pages-banner {
    height: 300px;
    padding-top: 110px;
    padding-bottom: 35px;
  }

  .banner-title-wrapper {
    padding-bottom: 20px;
    padding-right: 80px;
  }

  .banner-title {
    margin-bottom: 0;
  }

  .banner-pages-scroll-arrow-wrapper {
    margin-bottom: 13px;
  }

  .banner-pages-scroll-arrow-wrapper.w--current {
    margin-bottom: 0;
    bottom: 6%;
    right: 4%;
  }

  .banner-pages-scroll-arrow {
    width: 30px;
    height: 30px;
  }

  .video-wrapper {
    height: 360px;
  }

  .section-407 {
    padding-top: 43px;
    padding-bottom: 43px;
  }

  .section-407.without-bottom-spacing {
    padding-top: 49px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .no-margin-3 {
    margin-bottom: 0;
    font-size: 14px;
  }

  .no-margin-3.bigger-text {
    font-size: 22px;
  }

  .no-margin-3.centered {
    text-align: left;
    font-size: 22px;
    font-style: normal;
    text-decoration: none;
  }

  .section-408 {
    padding-top: 43px;
    padding-bottom: 43px;
  }

  .form-item {
    width: 100%;
  }

  .section-15 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .service-details-sidebar-contacts {
    margin-top: 20px;
  }

  .div-block-131 {
    flex-flow: column;
    margin-bottom: 20px;
  }

  .form-label-2 {
    font-size: .6em;
    top: 1.8em;
  }

  .service-details-content {
    flex-wrap: wrap;
  }

  .service-details-content-wrapper {
    width: 100%;
    margin-right: 0;
  }

  .button-wrapper-5 {
    margin-top: 20px;
  }

  .form-field {
    padding-top: 1.7em;
    padding-bottom: 1.4em;
    padding-left: 5.3em;
    font-size: .8em;
  }

  .form-field::placeholder {
    font-size: .9em;
  }

  .form-field.text-area {
    padding-top: 1.1em;
  }

  .service-details-sidebar-wrapper {
    width: 100%;
    margin-top: 40px;
    position: static;
  }
}

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

  h2 {
    font-size: 2rem;
  }

  .button.default.large {
    padding: .8rem;
  }

  .button.large {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .main-wrapper {
    border-radius: 2rem;
  }

  .hide-mobile-portrait {
    display: none;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom.margin-small {
    width: auto;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .max-width-full-mobile-portrait {
    width: 100%;
    max-width: none;
  }

  .page-padding {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .show-mobile-portrait {
    display: block;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-top.padding-xhuge {
    padding-top: 1.7rem;
  }

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

  .text-size-large {
    font-size: 1.175rem;
  }

  .text-rich-text blockquote {
    background-position: 0 20px;
    padding-top: 4rem;
    padding-left: 0;
    font-size: 1.5rem;
  }

  .heading-medium {
    font-size: 3rem;
  }

  .text-style-link {
    text-decoration: none;
  }

  .block-quote {
    background-image: url('../images/quote.svg');
    background-position: 0 20px;
    background-size: 30px;
    padding-top: 4rem;
    padding-left: 0;
  }

  .heading-h6, .heading-h6.white {
    font-size: 1rem;
  }

  .heading-small {
    font-size: 2.75rem;
  }

  .styleguide-4-col {
    grid-template-columns: 1fr;
  }

  .icon-1x1-large.first {
    width: 24px;
    height: 24px;
  }

  .card-padding {
    padding: 1.25rem 1.5rem;
  }

  .card-padding.large {
    padding: 1.75rem 2rem;
  }

  .card-padding.xlarge {
    margin-top: 63px;
    padding: .8rem 1.25rem;
  }

  .card-padding.xlarge.margin-right {
    margin-top: 0;
  }

  .card-padding.xlarge.margin-right._2 {
    margin-top: 0;
    padding-top: .9rem;
    padding-bottom: .9rem;
  }

  .card-padding.small {
    padding: 1rem 1.25rem;
  }

  .label.w--current {
    display: none;
  }

  .form-field-wrapper {
    margin-bottom: 1rem;
  }

  .text-size-regular.text-color-white {
    font-size: .925rem;
  }

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

  .subnav {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
  }

  .heading-h3.uppercase {
    font-size: 1.1rem;
  }

  .text-size-medium.text-color-white {
    font-size: .8rem;
  }

  .styleguide-2-col {
    grid-template-columns: 1fr;
  }

  .heading-large {
    font-size: 3.5rem;
  }

  .text-meta.text-color-white {
    font-size: 11px;
  }

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

  .heading-xlarge {
    font-size: 4rem;
  }

  .licensing-inner-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .utility-form-block {
    width: 80%;
  }

  .section-404 {
    padding: 2.5rem;
  }

  .navbar-inner {
    height: 100%;
  }

  .navbar-left {
    padding-left: 1.2rem;
  }

  .navbar-right {
    grid-template-columns: 1fr 1px;
  }

  .navbar-right-button {
    display: none;
  }

  .hero-image-mask {
    height: 100%;
  }

  .home-hero-image-slider {
    min-height: 40vh;
  }

  .home-hero-slide-wrapper {
    grid-template-rows: auto auto;
  }

  .section-home-hero {
    padding-bottom: 0;
  }

  .home-hero-grid {
    height: 100%;
    min-height: 350px;
    overflow: hidden;
  }

  .home-hero-content-inner {
    padding-top: 5vh;
    padding-bottom: 0;
  }

  .home-hero-content-inner._70 {
    padding-top: 12vh;
  }

  .button-group {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .section-home-services {
    margin-top: 0;
    padding-top: 96px;
  }

  .section-home-services.stick {
    padding-top: 0;
    top: 82px;
  }

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

  .card-content-top {
    flex-direction: column;
    justify-content: center;
    display: flex;
  }

  .home-about-grid {
    grid-row-gap: 0rem;
    grid-template-columns: 1fr;
  }

  .home-about-content-inner {
    padding-top: 0;
    padding-bottom: 5vh;
  }

  .project-slider-wrapper {
    padding-bottom: 5rem;
  }

  .project-mask {
    width: 85%;
  }

  .project-slide {
    margin-top: 2rem;
  }

  .project-card-content {
    grid-template-rows: auto;
    align-content: start;
    align-items: stretch;
  }

  .project-card-wrapper {
    height: auto;
    min-height: 220px;
  }

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

  .testimonial-content-left {
    padding-top: 5vh;
  }

  .testimonial-content-item {
    padding: 5vh 5vw;
  }

  .team-list {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .team-image-wrapper {
    padding-top: 66%;
  }

  .section-cta {
    align-items: center;
    height: 300px;
    display: flex;
  }

  .cta-component {
    height: auto;
  }

  .cta-content {
    padding: 0 5vw;
  }

  .text-color-white {
    font-size: 1.6rem;
  }

  .footer-grid-left {
    padding: 1.3rem 2.9rem;
  }

  .footer-grid-right {
    padding-top: 3vh;
    padding-bottom: 3vh;
  }

  .footer-grid-right-inner {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .footer-column {
    padding-left: 0;
    padding-right: 0;
  }

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

  .footer-bottom-left {
    padding-top: .65rem;
    padding-bottom: .65rem;
  }

  .footer-bottom-nav {
    grid-template-columns: 1fr;
  }

  .hero-button-group {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .about-hero-grid {
    grid-row-gap: 0rem;
    grid-template-columns: 1fr;
  }

  .about-hero-content-inner {
    padding-top: 5vh;
    padding-bottom: 5vh;
  }

  .about-info-grid {
    grid-template-columns: 1fr;
  }

  .about-expertise-grid {
    grid-row-gap: 0rem;
    grid-template-columns: 1fr;
  }

  .about-expertise-content-inner {
    padding-top: 5vh;
    padding-bottom: 5vh;
  }

  .about-stats-content {
    padding-top: 6vh;
    padding-bottom: 5vh;
  }

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

  .home-process-image-wrapper {
    height: 30vh;
  }

  .about-values-item-inner {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .services-hero-image-wrapper {
    height: 1000px;
  }

  .services-hero-grid {
    grid-row-gap: 0rem;
    grid-template-columns: 1fr;
  }

  .home-services-content._2 {
    height: 100%;
  }

  .services-hero-content-inner, .service-grid-header {
    padding-top: 5vh;
    padding-bottom: 5vh;
  }

  .service-grid-header._2 {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .service-image-slider {
    height: 30vh;
    min-height: auto;
    max-height: none;
  }

  .service-content-inner {
    padding-top: 5vh;
    padding-bottom: 5vh;
  }

  .service-slide-wrapper {
    grid-template-rows: auto auto;
  }

  .project-content-image-wrapper {
    height: 70vw;
  }

  .project-content-top {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .project-item {
    grid-row-gap: 0rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .single-project-image-wrapper {
    height: 200px;
    padding-top: 66%;
  }

  .project-button-wrapper {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    max-height: none;
  }

  .project-item-content-top {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .header56_component, .project-details-row, .contact-component, .service-detail-component {
    grid-template-columns: 1fr;
  }

  .licensing-icon-grid {
    grid-template-columns: 1fr 1fr 1fr;
    display: grid;
  }

  .gallery-pink-circle {
    display: none;
  }

  .large-image {
    height: 200px;
  }

  .lightbox-image {
    height: 300px;
  }

  .gallery-blue-small-circle {
    display: none;
  }

  .small-image {
    height: 200px;
  }

  .base-container {
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-3 {
    padding-left: 18px;
    padding-right: 18px;
  }

  .heading-3 {
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    display: flex;
  }

  .image-3 {
    max-width: none;
  }

  .image-4 {
    max-width: 100%;
  }

  .div-block-8 {
    position: relative;
    top: 25px;
  }

  .heading-4 {
    margin-bottom: 43px;
    font-size: 1.6rem;
  }

  .div-block-9 {
    padding: 73px 17px;
  }

  .client-logo-one-box {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .client-logo-one-box.border-top {
    justify-content: flex-start;
    align-items: center;
  }

  .client-one-logo {
    margin-left: 60px;
    margin-right: 60px;
  }

  ._30 {
    justify-content: center;
    align-items: flex-start;
  }

  .accordion-item {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-title {
    text-align: left;
    margin-bottom: 15px;
    font-size: 28px;
  }

  .section-title-wrapper {
    margin-bottom: 12px;
  }

  .base-container-2 {
    max-width: 100%;
  }

  .accordion-title {
    font-size: 18px;
    line-height: 22px;
  }

  .accordion-wrap {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .accordion-list-content {
    font-size: 14px;
    line-height: 18px;
  }

  .main-features-wrapper {
    grid-template-columns: 1fr;
  }

  .main-features-wrapper.second-style.space-down {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .text-block-67 {
    font-size: 14px;
    line-height: 18px;
  }

  .big-number {
    text-align: center;
    font-size: 40px;
  }

  .home-3-image-wrapper {
    width: 100%;
  }

  .no-margin {
    margin-bottom: 0;
  }

  .video-wrapper-bigger {
    height: auto;
  }

  .play-button-hover-home {
    width: 70px;
    height: 70px;
    top: auto;
    bottom: 30px;
    right: 20px;
  }

  .play-button-hover-home.bottom-style {
    width: 40px;
    height: 40px;
    top: 20px;
    bottom: auto;
  }

  .statistic-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .base-container-3 {
    max-width: 100%;
  }

  .video-wrapper-home-three {
    grid-template-columns: auto;
    width: 100%;
  }

  .statistic-wrap-item {
    width: 100%;
  }

  .video-overlay {
    padding-left: 20px;
    padding-right: 20px;
  }

  .video-overlay.bottom-style {
    width: 100%;
  }

  .no-margin-2 {
    margin-bottom: 0;
  }

  .base-container-4 {
    max-width: 100%;
  }

  .home-paragraphs-wrapper {
    grid-row-gap: 10px;
    flex-direction: column;
    display: flex;
  }

  .in-section-title {
    margin-bottom: 15px;
  }

  .section-405.without-bottom-spacing {
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-color-white-2 {
    font-size: 1.1rem;
  }

  .text-size-medium-2.text-color-white-2 {
    font-size: .8rem;
  }

  .form-3 {
    align-items: center;
  }

  .modal {
    padding-top: 33px;
    display: none;
  }

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

  .button-wrapper-3.product {
    width: 100%;
  }

  .image-84 {
    max-width: 55%;
    margin-top: 16px;
  }

  .text-field-contact {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    font-size: 12px;
  }

  .left-alignment {
    line-height: .9em;
  }

  .left-alignment.smaller-text {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .flex-form {
    flex-direction: column;
    width: 100%;
  }

  .text-area {
    color: #000;
    font-size: 14px;
  }

  .div.less {
    width: 95%;
    height: 90%;
  }

  .form-block-5 {
    padding-left: 0;
    padding-right: 0;
  }

  .form-block-5.outline-outside {
    width: 100%;
    height: auto;
    padding-top: 6px;
    padding-left: 7px;
    padding-right: 7px;
    overflow: scroll;
  }

  .about-us-banner {
    padding: 0 15px;
  }

  .container-3 {
    justify-content: center;
    align-items: center;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-96 {
    width: 90%;
  }

  .title-heading-wrapper {
    margin-bottom: 0;
  }

  .italic-text-28 {
    font-size: 14px;
  }

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

  .section-406, .section-406.home-13-get-started {
    padding-left: 20px;
    padding-right: 20px;
  }

  .base-container-5 {
    max-width: none;
  }

  .vertical-inscription.secondary-sections {
    text-align: left;
  }

  .text-white-2 {
    font-size: 28px;
    line-height: 32px;
  }

  .main-left-title-wrapper {
    justify-content: flex-start;
    align-items: flex-start;
  }

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

  .heading-7 {
    font-size: 1rem;
  }

  .text-block-68 {
    font-size: .6rem;
    line-height: 18px;
  }

  .heading-8 {
    text-align: left;
    font-size: .8rem;
  }

  .heading-10 {
    text-align: left;
  }

  .pages-banner {
    height: 300px;
    padding-left: 11px;
    padding-right: 11px;
  }

  .base-container-6 {
    max-width: 100%;
  }

  .banner-title-wrapper {
    padding-bottom: 0;
    padding-right: 14px;
  }

  .banner-title {
    font-size: 32px;
  }

  .banner-pages-scroll-arrow-wrapper {
    display: flex;
    inset: auto 4% -24% auto;
  }

  .base-container-7 {
    max-width: 100%;
  }

  .avatars-image {
    max-width: 90%;
  }

  .section-407 {
    padding: 32px 20px;
  }

  .section-407.without-bottom-spacing {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .no-margin-3.bigger-text {
    font-size: 22px;
  }

  .base-container-8 {
    max-width: 100%;
  }

  .section-408 {
    padding: 32px 20px;
  }

  .link-6 {
    font-size: 14px;
  }

  .button-home-5 {
    padding-left: 9px;
    padding-right: 9px;
  }

  .form-item.is-area-text {
    margin-bottom: .7em;
  }

  .form-error-message {
    padding: 1.7em;
  }

  .section-15 {
    padding-bottom: 0;
  }

  .div-block-130 {
    padding-top: 20px;
    padding-left: 13px;
    padding-right: 13px;
  }

  .text-block-20 {
    font-size: 14px;
  }

  .div-block-131 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .text-block-22 {
    font-size: 12px;
  }

  .accordion-item-2 {
    padding: 11px;
  }

  .bold-text-11 {
    font-size: 14px;
    line-height: 16px;
  }

  .form-label-2 {
    font-size: 10px;
    top: 1.8em;
  }

  .service-details-content {
    width: 100%;
  }

  .contact-link {
    font-size: 14px;
  }

  .form-success-title {
    font-size: 1.2em;
  }

  .secondary-lines {
    height: 50px;
  }

  .form-field {
    padding-left: 5.1em;
  }

  .form-field::placeholder {
    font-size: .75em;
  }

  .form-field.other {
    padding-left: 3.2em;
  }

  .base-container-9 {
    max-width: 100%;
  }

  .accordion-title-2 {
    font-size: 16px;
    line-height: 18px;
  }

  .rich-text-style.negative-top-bottom {
    margin-top: 0;
    margin-bottom: 0;
  }

  .form-error-paragraph {
    font-size: 1em;
  }

  .form-inner.hidden {
    margin-bottom: 0;
  }

  .service-details-sidebar-wrapper {
    padding: 20px;
  }

  .form-block-6 {
    margin-bottom: 14px;
  }
}

#w-node-_69d30d75-068b-e442-b95c-46dc483e088e-483e088c {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-_69d30d75-068b-e442-b95c-46dc483e0898-483e088c, #w-node-_69d30d75-068b-e442-b95c-46dc483e089a-483e088c, #w-node-_69d30d75-068b-e442-b95c-46dc483e089b-483e088c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_69d30d75-068b-e442-b95c-46dc483e08b1-483e088c {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_76c7c997-744b-0d1e-1b8c-b43e37770629-483e088c {
  justify-self: start;
}

#w-node-_69d30d75-068b-e442-b95c-46dc483e089c-483e088c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ddd5c32d-7599-e9fb-4aef-c6fe5782b8d8-5782b8d4 {
  place-self: center start;
}

#w-node-ddd5c32d-7599-e9fb-4aef-c6fe5782b8db-5782b8d4 {
  place-self: center end;
}

#w-node-ddd5c32d-7599-e9fb-4aef-c6fe5782b8e4-5782b8d4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ddd5c32d-7599-e9fb-4aef-c6fe5782b8f7-5782b8d4, #w-node-_521c9e9e-06df-35ed-81a2-15b4746db759-5ee19d88 {
  align-self: stretch;
}

#w-node-_7974863f-67b9-8420-fcea-9a7946cd34f6-5ee19d88, #w-node-_7974863f-67b9-8420-fcea-9a7946cd3505-5ee19d88, #w-node-_7974863f-67b9-8420-fcea-9a7946cd3514-5ee19d88 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1381823c-1010-5d46-2582-84135034f38e-5ee19d88 {
  align-self: stretch;
}

#w-node-_59be3399-6e82-1828-687b-6ecb9870e716-5ee19d88 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

#w-node-ef95573d-fbc1-715a-e258-0b19b0b2bf20-5ee19d88, #w-node-_0d0977c5-a16a-8c66-a6ce-4a59863e299c-5ee19d88, #w-node-_40bb9526-57bb-d1c1-52af-440220ffaad3-5ee19d88, #w-node-_37e5a017-c633-dad7-bda7-4bdb7be4c1a0-5ee19d88, #w-node-_0c437d78-d820-2e39-b52c-7ce01c54f1fc-5ee19d88, #w-node-ee88f636-509a-8699-292b-eb2d2a027483-5ee19d88, #w-node-ee88f636-509a-8699-292b-eb2d2a027484-5ee19d88, #w-node-_5c5c40d2-0914-e52c-fe8b-fb7a40e5cdc0-5ee19d88, #w-node-_5c5c40d2-0914-e52c-fe8b-fb7a40e5cdc1-5ee19d88, #w-node-_5c5c40d2-0914-e52c-fe8b-fb7a40e5cdc5-5ee19d88, #w-node-_5c5c40d2-0914-e52c-fe8b-fb7a40e5cdda-5ee19d88, #w-node-f70283ae-8b96-aeb0-fc70-cff193f2104a-5ee19d88, #w-node-_5c5c40d2-0914-e52c-fe8b-fb7a40e5cddd-5ee19d88, #w-node-_5c5c40d2-0914-e52c-fe8b-fb7a40e5cdf2-5ee19d88, #w-node-bc91353e-7d17-9279-993e-f4c3050bf57d-5ee19d88, #w-node-_5c5c40d2-0914-e52c-fe8b-fb7a40e5cdf5-5ee19d88, #w-node-_5c5c40d2-0914-e52c-fe8b-fb7a40e5ce0a-5ee19d88, #w-node-_7785978c-db84-8ce2-6e75-52a4940d1174-5ee19d88, #w-node-_5c5c40d2-0914-e52c-fe8b-fb7a40e5ce0d-5ee19d88, #w-node-_5c5c40d2-0914-e52c-fe8b-fb7a40e5ce22-5ee19d88, #w-node-bb17f91e-ae6d-91f2-2e8b-955d141be91d-5ee19d88, #w-node-_5c5c40d2-0914-e52c-fe8b-fb7a40e5ce25-5ee19d88 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-df1a43a3-192a-289c-6209-1f5cc61800e7-5ee19d88 {
  align-self: stretch;
}

#w-node-_34830032-8a9a-ff99-0107-0b000360c46b-5ee19d8a {
  justify-self: start;
}

#w-node-e97d32fc-ddf7-d7e2-2d03-b6624d5bc0f4-5ee19d8f {
  align-self: stretch;
}

#w-node-_9f1b0a45-ca2f-67f0-e81d-2f993d8ae400-5ee19d8f {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_9f1b0a45-ca2f-67f0-e81d-2f993d8ae404-5ee19d8f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9f1b0a45-ca2f-67f0-e81d-2f993d8ae426-5ee19d8f {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_9f1b0a45-ca2f-67f0-e81d-2f993d8ae42a-5ee19d8f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-dc1f906a-f2fe-cb13-118b-964d7c72971b-8c58d987 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-b32cdb03-d614-4b1c-71f0-0cfb5ea8f7a5-5ea8f79b {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-a7ea6814-cdee-a42b-1474-0e50568a4eeb-5ea8f79b, #w-node-b561bd77-1fc6-3b6f-40a4-d745d29e5da9-5ea8f79b, #w-node-_65ddff8c-0b25-fd75-de45-3cd1ac8b4bbb-5ea8f79b {
  justify-self: center;
}

#w-node-_1fea84a1-5cfe-23bf-65e9-fa1a6c3371e0-2cf5f6b9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

#w-node-_1fea84a1-5cfe-23bf-65e9-fa1a6c3371ec-2cf5f6b9, #w-node-_84446d56-17f9-f081-daaf-df6f97e28b2f-2cf5f6b9, #w-node-_653a8225-dede-7203-7d12-b378a3490799-2cf5f6b9, #w-node-b6a8d6fc-09b1-ffac-aa09-9578f97ee8da-2cf5f6b9, #w-node-_49d4b3a7-522d-ef3a-cefb-148609666fbb-2cf5f6b9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_991bbdc0-b73c-79f7-90c5-e89438071f6e-2cf5f6b9, #w-node-a6467b92-bedc-d50e-91ee-8f4fa81e0a14-2cf5f6b9 {
  align-self: stretch;
}

#w-node-_95dfe012-9c6a-06e3-8604-95d9ee7782a2-2cf5f6b9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-db2d164b-b7d3-66de-05ab-536a6edf8b94-2cf5f6b9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_64d45fa7-615c-af30-8802-3a235b060258-b65128f4, #w-node-_64d45fa7-615c-af30-8802-3a235b060258-dbacc862, #w-node-_64d45fa7-615c-af30-8802-3a235b060258-6859a4eb, #w-node-_64d45fa7-615c-af30-8802-3a235b060258-49c53fd2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b3d7497a-4099-bc40-7948-7e128ff6454f-1aa1715b {
  align-self: stretch;
}

#w-node-_2f3cf995-597f-ef8f-c367-25e17a60e05c-1aa1715b {
  justify-self: start;
}

#w-node-_84446d56-17f9-f081-daaf-df6f97e28b2f-1aa1715b, #w-node-_653a8225-dede-7203-7d12-b378a3490799-1aa1715b, #w-node-b6a8d6fc-09b1-ffac-aa09-9578f97ee8da-1aa1715b, #w-node-_49d4b3a7-522d-ef3a-cefb-148609666fbb-1aa1715b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_85dd59b9-455b-1792-bcae-e1dfa069e439-1aa1715b, #w-node-_85dd59b9-455b-1792-bcae-e1dfa069e440-1aa1715b, #w-node-_85dd59b9-455b-1792-bcae-e1dfa069e447-1aa1715b, #w-node-_85dd59b9-455b-1792-bcae-e1dfa069e44e-1aa1715b, #w-node-_85dd59b9-455b-1792-bcae-e1dfa069e455-1aa1715b, #w-node-_66d45c8c-618d-f70d-1683-0fb8584eb52f-1aa1715b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-b3d7497a-4099-bc40-7948-7e128ff6454f-2d70a72c {
  align-self: stretch;
}

#w-node-_2f3cf995-597f-ef8f-c367-25e17a60e05c-2d70a72c {
  justify-self: start;
}

#w-node-_84446d56-17f9-f081-daaf-df6f97e28b2f-2d70a72c, #w-node-_653a8225-dede-7203-7d12-b378a3490799-2d70a72c, #w-node-b6a8d6fc-09b1-ffac-aa09-9578f97ee8da-2d70a72c, #w-node-_49d4b3a7-522d-ef3a-cefb-148609666fbb-2d70a72c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_66d45c8c-618d-f70d-1683-0fb8584eb52f-2d70a72c {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_59be3399-6e82-1828-687b-6ecb9870e716-061235c0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

#w-node-ef95573d-fbc1-715a-e258-0b19b0b2bf20-061235c0, #w-node-_0d0977c5-a16a-8c66-a6ce-4a59863e299c-061235c0, #w-node-_40bb9526-57bb-d1c1-52af-440220ffaad3-061235c0, #w-node-_37e5a017-c633-dad7-bda7-4bdb7be4c1a0-061235c0, #w-node-_0c437d78-d820-2e39-b52c-7ce01c54f1fc-061235c0, #w-node-ee88f636-509a-8699-292b-eb2d2a027483-061235c0, #w-node-ee88f636-509a-8699-292b-eb2d2a027484-061235c0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-df1a43a3-192a-289c-6209-1f5cc61800e7-061235c0 {
  align-self: stretch;
}

@media screen and (max-width: 991px) {
  #w-node-ddd5c32d-7599-e9fb-4aef-c6fe5782b8f2-5782b8d4 {
    align-self: center;
  }

  #w-node-_7974863f-67b9-8420-fcea-9a7946cd3504-5ee19d88, #w-node-e71b00d8-3ec7-6561-67c2-fd628d4829d0-5ee19d88, #w-node-_9147e791-05c7-d084-ba09-bc03c252e1fe-5ee19d88 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_9f1b0a45-ca2f-67f0-e81d-2f993d8ae43e-5ee19d8f {
    order: -9999;
  }

  #w-node-dc1f906a-f2fe-cb13-118b-964d7c72971b-8c58d987 {
    place-self: center;
  }

  #w-node-_1fea84a1-5cfe-23bf-65e9-fa1a6c3371e0-2cf5f6b9 {
    justify-self: stretch;
  }

  #w-node-_63349ef4-052e-229d-5a8a-23a057eed883-2cf5f6b9, #w-node-_34ecfa21-d0d5-8243-c179-8ef965b1985c-2cf5f6b9 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_64d45fa7-615c-af30-8802-3a235b060258-b65128f4, #w-node-_64d45fa7-615c-af30-8802-3a235b060258-dbacc862, #w-node-_64d45fa7-615c-af30-8802-3a235b060258-6859a4eb, #w-node-_64d45fa7-615c-af30-8802-3a235b060258-49c53fd2 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_63349ef4-052e-229d-5a8a-23a057eed883-1aa1715b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_66d45c8c-618d-f70d-1683-0fb8584eb52f-1aa1715b {
    place-self: center;
  }

  #w-node-_63349ef4-052e-229d-5a8a-23a057eed883-2d70a72c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_66d45c8c-618d-f70d-1683-0fb8584eb52f-2d70a72c {
    place-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-addb1f59-fcf3-c757-2768-7a853c9d22f6-1aa1715b {
    justify-self: center;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_69d30d75-068b-e442-b95c-46dc483e089c-483e088c {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-ddd5c32d-7599-e9fb-4aef-c6fe5782b8db-5782b8d4 {
    justify-self: stretch;
  }

  #w-node-ddd5c32d-7599-e9fb-4aef-c6fe5782b8f2-5782b8d4 {
    justify-self: center;
  }
}


@font-face {
  font-family: 'Font Awesome 5 Free 400';
  src: url('../fonts/Font-Awesome-5-Free-Regular-400.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Font Awesome 5 Free Solid 900';
  src: url('../fonts/Font-Awesome-5-Free-Solid-900.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Font Awesome 5 Brands 400';
  src: url('../fonts/Font-Awesome-5-Brands-Regular-400.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}