:root {
  --medium-sea-green: #5ab963;
  --pi-blue: #242873;
  --dark-grey: #b3b3b3;
  --bg-grey: #fafafa;
  --black: black;
  --white: white;
  --off-black: #1a1a1a;
  --trans: #fafafa00;
  --dark-blue: #000a64;
  --green-pimato: #00ffb0;
  --light-blue: #eaf8ff;
  --light-dark-bue: #e7e7ef;
  --light-grey: #f6f7f8;
  --light-greyy: #d1d2d3;
  --dark-grey-2: #999;
  --sea-green: #48944f;
}

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

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: bold;
  line-height: 44px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: bold;
  line-height: 36px;
}

h3 {
  color: #000;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Libre Franklin, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

h4 {
  color: #000;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Libre Franklin, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: bold;
  line-height: 18px;
}

p {
  margin-bottom: 10px;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

li {
  color: #000;
  margin-top: 5px;
  margin-bottom: 5px;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

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

blockquote {
  border-color: var(--medium-sea-green) var(--medium-sea-green) var(--medium-sea-green) #e6e6e6;
  color: #000;
  border-left-style: solid;
  border-left-width: 5px;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
}

.navigation {
  z-index: 9999;
  background-color: #ffffff80;
  justify-content: center;
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  position: sticky;
  top: 0;
}

.navigation-container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1170px;
  height: 90px;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.header {
  background-image: url('../images/image-header.jpg');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  margin-top: -90px;
  padding: 210px 30px 120px;
  display: flex;
}

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

.navigation-link {
  color: #fff;
  margin-left: 15px;
  margin-right: 15px;
  font-family: Libre Franklin, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
}

.bullet {
  background-color: #000;
  border-radius: 50%;
  width: 4px;
  height: 4px;
  margin-left: 15px;
  margin-right: 15px;
}

.navigation-button {
  color: #242873;
  background-color: #0000;
  border: 2px solid #242873;
  border-radius: 4px;
  margin-left: 15px;
  font-family: Libre Franklin, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  transition: background-color .2s, color .2s;
}

.navigation-button:hover {
  color: #fff;
  background-color: #242873;
  border-color: #fff;
}

.header-content {
  perspective: 2000px;
  text-align: center;
  max-width: 770px;
}

.h1 {
  color: #fff;
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 30px;
  font-family: Libre Franklin, sans-serif;
  font-size: 72px;
  font-weight: 800;
  line-height: 78px;
}

.h1.cc-black {
  color: #000;
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
}

.h1.legal-heading {
  color: #000;
  font-size: 48px;
}

.paragraph {
  color: #fff;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  display: block;
}

.paragraph.cc-gray, .paragraph.cc-gray-ctr {
  color: #999;
  text-align: center;
}

.paragraph.cc-gray-left {
  color: #747474;
  text-align: left;
}

.button {
  background-color: var(--pi-blue);
  color: #fff;
  text-align: left;
  border-radius: 20px;
  margin-top: 50px;
  padding: 10px 30px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  transition: background-color .2s;
}

.button.cc-cta {
  background-color: var(--pi-blue);
  margin-top: 0;
}

.button.cc-banner {
  color: #000;
  background-color: #fff;
}

.button.cc-banner:hover {
  background-color: #e6e6e6;
}

.container {
  z-index: 1;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1170px;
  display: flex;
  position: relative;
}

.container.cc-center {
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: none;
  display: flex;
}

.container.cc-cta {
  display: flex;
}

.container.cc-footer {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.container.cc-right {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.container.cc-blogpost {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 770px;
  display: block;
}

.container.cc-contact {
  display: flex;
}

.features {
  justify-content: center;
  align-items: center;
  padding: 120px 30px;
  display: flex;
}

.h2 {
  color: var(--dark-grey);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Libre Franklin, sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 36px;
}

.h2.cc-center {
  text-align: center;
  margin-bottom: 40px;
}

.h2.cc-2-rows {
  margin-bottom: 25px;
}

.h2.cc-white-text {
  color: #fff;
}

.h2.text-span {
  color: #000;
}

.h2.text-span.cc-post-text {
  margin-bottom: 15px;
}

.h2.cc-justify {
  text-align: justify;
  margin-bottom: 40px;
}

.h2.h2-small {
  font-size: 20px;
  line-height: 36px;
}

.h2.text-span-ctr {
  color: #000;
  text-align: center;
  margin-top: 20px;
  font-weight: 800;
}

.h2.text-span-ctr.cc-post-text {
  margin-bottom: 15px;
}

.h2.info-and-image-header {
  margin-bottom: 20px;
}

.h2-container {
  width: 50%;
  margin-bottom: 90px;
}

.h2-container.cc-center {
  text-align: center;
  width: 65%;
  margin-bottom: 0;
}

.h2-container.cc-questions {
  margin-bottom: 60px;
}

.h2-container.cc-center-long {
  text-align: center;
  width: 90%;
  margin-bottom: 0;
}

.text-span {
  color: #000;
  font-weight: 800;
}

.text-span.cc-white-text {
  color: #fff;
}

.feature-item-container {
  border: 1px solid #f7f7f7;
  height: 330px;
  padding: 50px 40px;
  transition: box-shadow .2s;
  box-shadow: 0 5px 20px #0000000d;
}

.collection-list {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-left: -10px;
  margin-right: -10px;
  display: flex;
}

.collection-list.cc-feature-row {
  margin-bottom: -20px;
}

.h3 {
  color: #000;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Libre Franklin, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.h3.cc-cta {
  color: var(--medium-sea-green);
  margin-bottom: 0;
}

.h3.cc-header {
  color: #fff;
  margin-bottom: 0;
  text-decoration: none;
}

.h3.cc-pricing {
  width: 100%;
}

.h3.cc-team-title {
  width: 100%;
  margin-bottom: 0;
}

.h3.cc-latest-posts {
  margin-bottom: 40px;
}

.h3.cc-header-black {
  color: #242873;
  margin-bottom: 0;
  text-decoration: none;
}

.h3.cc-success {
  color: #999;
  width: 100%;
  font-family: IBM Plex Mono, sans-serif;
  font-weight: 400;
}

.h3.cc-header-small {
  color: #242873;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 12px;
}

.slider-section {
  background-color: #fafafa;
  flex-flow: wrap;
  place-content: stretch center;
  align-items: center;
  margin-top: 360px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  position: relative;
}

.slider {
  flex: 1;
  max-width: 1440px;
  height: 720px;
  margin-top: -360px;
}

.slide {
  background-image: url('../images/image-slider-01.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-nav {
  font-size: 6px;
}

.icon {
  width: 30px;
  height: 30px;
}

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

.slide-2 {
  background-image: url('../images/image-slider-02.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-3 {
  background-image: url('../images/image-slider-03.jpg');
  background-position: 50%;
  background-size: cover;
}

.about {
  background-color: #fafafa;
  justify-content: center;
  align-items: center;
  padding: 115px 30px;
  display: flex;
}

.link {
  color: var(--medium-sea-green);
  text-transform: uppercase;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  text-decoration: none;
  transition: color .2s;
}

.link:hover {
  color: #48944f;
}

.separator {
  justify-content: center;
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.separator.cc-background-grey {
  background-color: var(--bg-grey);
}

.line-color {
  background-color: #e6e6e6;
  height: 1px;
}

.premium {
  background-color: #fafafa;
  justify-content: center;
  align-items: center;
  padding: 120px 30px;
  display: flex;
}

.premium.cc-background {
  background-color: #0000;
  display: flex;
}

._2-row-image.cc-bottom {
  margin-right: 0;
}

._2-row-image.cc-row-spacing {
  margin-right: 100px;
}

._2-row-text {
  max-width: 370px;
  margin-right: 100px;
}

._2-row-text.cc-bottom {
  margin-right: 100px;
}

._2-row-text.cc-bottom.cc-reverse {
  margin-left: 100px;
  margin-right: 0;
}

.row {
  object-fit: fill;
  flex: 1;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.row.cc-bottom {
  flex-direction: row-reverse;
  margin-top: 90px;
}

.row.cc-bottom.cc-reverse {
  flex-direction: row;
}

.row.cc-reverse {
  flex-direction: row-reverse;
  justify-content: space-between;
}

._2-row-action-text {
  text-align: center;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  margin-top: 110px;
}

.cta {
  background-color: #fafafa;
  justify-content: center;
  align-items: center;
  padding: 150px 30px;
  display: flex;
}

.cta-line {
  background-color: var(--pi-blue);
  width: 30px;
  height: 2px;
  margin-left: 20px;
}

.cta-line.cc-header {
  background-color: #fff;
}

.cta-line.cc-header-black {
  color: var(--black);
  background-color: #000;
  border: 1px solid #000;
}

.cta-column {
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  width: 50%;
  display: flex;
}

.cta-left-top {
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
  display: flex;
}

.footer {
  background-color: #0a0e1a;
  justify-content: center;
  align-items: center;
  padding: 120px 30px 150px;
  display: flex;
}

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

.footer-column.cc-footer {
  flex-direction: column;
}

.text-footer-credits {
  color: #666;
  width: 73%;
  margin-top: 15px;
  font-family: Libre Franklin, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
}

.footer-links-list {
  flex-direction: column;
  padding-right: 50px;
  display: flex;
}

.link-footer {
  color: #fff;
  margin-bottom: 25px;
  font-family: Libre Franklin, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  text-decoration: none;
  transition: color .2s;
}

.link-footer:hover {
  color: #ffffffb3;
}

.link-social {
  justify-content: center;
  align-items: center;
  width: 15px;
  height: 15px;
  margin-right: 15px;
  display: flex;
}

.footer-social {
  justify-content: flex-start;
  width: 25%;
  display: none;
}

.collection-item {
  width: 33.3333%;
  padding-left: 10px;
  padding-right: 10px;
}

.collection-item.cc-feature-row {
  width: 25%;
  margin-bottom: 20px;
}

.feature-icon {
  align-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 25px;
  display: flex;
}

.nav-button {
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: none;
}

.nav-icon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  display: flex;
}

.nav-icon-piece {
  background-color: #000;
  width: 100%;
  height: 2px;
  position: relative;
}

.nav-icon-piece.top {
  position: absolute;
  transform: translate(0, -8px);
}

.nav-icon-piece.bottom {
  position: absolute;
  transform: translate(0, 8px);
}

.header-inner {
  background-color: var(--white);
  background-image: url('../images/Home.jpg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: auto;
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-height: none;
  margin-top: -90px;
  padding: 180px 30px 90px;
  display: flex;
}

.header-inner.cc-header-extra {
  padding-bottom: 210px;
}

.header-inner-content {
  width: 57%;
}

.inner-category {
  color: var(--black);
  align-items: center;
  margin-bottom: 30px;
  display: flex;
}

.premium-banner {
  background-image: url('../images/image-premium-banner.jpg');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-height: 720px;
  padding: 120px 30px;
  display: flex;
}

.premium-banner-inner {
  background-color: var(--pi-blue);
  max-width: 370px;
  padding: 60px 50px;
}

.ex-capabilties {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 30px;
  display: flex;
}

.premium-image-banner {
  flex: 1;
  justify-content: center;
  align-items: center;
  max-width: 1440px;
  max-height: 720px;
  display: flex;
  overflow: hidden;
}

.premium-image-container {
  background-color: #fff;
  border: 1px solid #f7f7f7;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1170px;
  margin-top: -60px;
  margin-bottom: 120px;
  padding: 40px 60px;
  display: flex;
  box-shadow: 0 5px 20px #0000000d;
}

.image-banner {
  margin-right: 60px;
}

.container-quote {
  text-align: center;
  width: 70%;
}

.block-quote {
  color: var(--medium-sea-green);
  border-left: 0 #0000;
  font-family: Libre Franklin, sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 36px;
}

.author {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.image {
  border-radius: 50%;
  width: 140px;
  max-width: none;
  height: auto;
}

.text-block {
  color: #000;
  margin-left: 20px;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.container-pricing {
  justify-content: center;
  align-items: stretch;
  margin-left: -10px;
  margin-right: -10px;
  display: flex;
}

.pricing-block {
  border: 1px solid #f7f7f7;
  flex-wrap: wrap;
  align-content: space-between;
  align-items: stretch;
  width: 33.3333%;
  margin-left: 10px;
  margin-right: 10px;
  transition: box-shadow .2s;
  display: flex;
  box-shadow: 0 5px 20px #0000000d;
}

.pricing-block:hover {
  box-shadow: 0 5px 20px #00000024;
}

.price {
  color: #000;
  font-family: Libre Franklin, sans-serif;
  font-size: 72px;
  font-weight: 800;
  line-height: 78px;
}

.price-block {
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.currency {
  color: #999;
  margin-top: 40px;
  margin-left: 10px;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.small-text {
  color: #000;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.small-text.cc-light {
  color: #999;
  margin-top: 0;
  margin-bottom: 0;
}

.pricing-block-separator {
  background-color: var(--medium-sea-green);
  width: 100%;
  height: 1px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.pricing-info {
  padding: 50px 40px 40px;
}

.button-pricing {
  background-color: var(--medium-sea-green);
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  font-family: Libre Franklin, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 30px;
  transition: background-color .2s;
  display: flex;
}

.button-pricing:hover {
  background-color: #48944f;
}

.service-pillar-facts {
  justify-content: center;
  margin-left: -10px;
  margin-right: -10px;
  display: flex;
}

.focus-areas {
  justify-content: center;
  align-items: center;
  padding: 115px 30px;
  display: flex;
  position: relative;
}

.fact-block {
  text-align: center;
  background-color: #fff;
  border: 1px solid #f7f7f7;
  width: 90%;
  padding: 10px;
  box-shadow: 0 5px 20px #0000000d;
}

.image-2 {
  background-color: var(--white);
  border: 1px #000;
  border-radius: 20px;
  width: 700px;
  height: auto;
  margin-bottom: 0;
  padding: 20px;
  box-shadow: 0 0 5px 1px #a9a9d1;
}

.image-2._2 {
  width: 400px;
  margin-bottom: 0;
  display: block;
}

.image-2.aaaa {
  border-radius: 20px;
  width: 700px;
  padding: 20px;
  overflow: visible;
  box-shadow: 0 0 5px 1px #a9a9d1;
}

.facts-gray-background {
  text-align: left;
  background-color: #fafafa;
  flex: 0 auto;
  order: 0;
  width: auto;
  max-width: 1170px;
  height: 70%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.faq {
  background-color: #fafafa;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  padding: 120px 30px;
  display: flex;
}

.container-questions {
  flex-wrap: nowrap;
  place-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin: -30px -10px;
  display: flex;
}

.question-block {
  width: 50%;
  margin: 30px 50px 30px 10px;
}

.container-facts-inner {
  flex: 0 auto;
  width: 25%;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.header-banner {
  justify-content: center;
  align-items: center;
  margin-top: -120px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.about-intro {
  -webkit-text-fill-color: inherit;
  background-color: #fff0;
  background-clip: border-box;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: none;
  padding: 115px 30px 75px;
  display: flex;
}

.goals-container {
  align-items: flex-start;
  margin-left: -10px;
  margin-right: -10px;
  display: flex;
}

.goals-container-inner {
  width: 33.33%;
  margin-left: 10px;
  margin-right: 10px;
}

.team {
  justify-content: center;
  align-items: center;
  padding: 120px 30px;
  display: flex;
}

.collection-list-2 {
  margin: -10px;
}

.team-member {
  padding-top: 10px;
  padding-bottom: 10px;
}

.team-inner-container {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
  box-shadow: 0 5px 20px #0000000d;
}

.team-avatar {
  width: 100%;
  height: 100%;
}

.team-member-info {
  flex-wrap: wrap;
  place-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 20px 30px 10px;
  display: flex;
}

.engagement {
  justify-content: center;
  align-items: center;
  padding: 120px 30px;
  display: flex;
}

.blog-posts {
  justify-content: center;
  align-items: center;
  margin-top: -120px;
  margin-bottom: 120px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.blog-posts-item {
  flex-wrap: wrap;
  place-content: stretch center;
  align-items: stretch;
  width: 33.3333%;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.post-list {
  flex-wrap: wrap;
  place-content: stretch flex-start;
  margin: -10px;
  display: flex;
}

.blog-posts-item-container {
  background-color: #fff;
  flex-wrap: wrap;
  place-content: stretch center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 5px 20px #0000000d;
}

.post-info {
  padding: 30px;
}

.post-date {
  color: #000;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.header-blog {
  justify-content: center;
  align-items: center;
  margin-top: -90px;
  padding-top: 90px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  position: relative;
}

.header-image {
  z-index: 1;
  max-width: 1440px;
  max-height: 750px;
  position: relative;
}

.header-color {
  background-color: var(--medium-sea-green);
  width: 100%;
  height: 75%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.content {
  justify-content: center;
  align-items: center;
  padding: 90px 30px;
  display: flex;
}

.contact-intro {
  flex-flow: column wrap;
  place-content: stretch center;
  align-items: center;
  padding: 120px 30px;
  display: flex;
}

.contact-info {
  width: 50%;
  margin-top: -10px;
  margin-bottom: -10px;
}

.contact-info-row {
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
}

.contact-info-text {
  color: #999;
  width: 25%;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.contact-info-text.cc-text-black {
  color: #000;
  width: auto;
  margin-bottom: 10px;
}

.form-input {
  width: auto;
  margin-top: 100px;
  margin-bottom: 0;
  padding-right: 40px;
}

.text-field {
  color: #b3b3b3;
  border: 1px #000;
  border-bottom: 1px solid #e6e6e6;
  height: 60px;
  padding-left: 0;
  padding-right: 0;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

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

.text-field:active {
  color: #000;
}

.text-field:focus {
  color: #000;
  border-bottom-color: #000;
}

.text-field::placeholder {
  color: #b3b3b3;
}

.rich-text {
  color: #000;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

.rich-text h2 {
  font-family: Libre Franklin, sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.rich-text p {
  color: #000;
  margin-top: 25px;
  margin-bottom: 25px;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 14px;
  line-height: 24px;
}

.rich-text img {
  margin-top: 30px;
  margin-bottom: 30px;
}

.rich-text figcaption {
  color: #777;
  text-align: left;
  margin-top: 0;
  margin-bottom: 25px;
  font-family: Libre Franklin, sans-serif;
  font-size: 12px;
  line-height: 20px;
}

.logo {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.logo.w--current {
  width: auto;
}

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

.nav-link {
  color: #000;
  font-family: Libre Franklin, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
}

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

.latest-posts {
  justify-content: center;
  align-items: center;
  padding: 90px 30px;
  display: flex;
}

.style-guide-label {
  color: #777;
  border-bottom: 1px solid #777;
  flex: 1;
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 13px;
  line-height: 14px;
}

.image-licensing {
  background-color: #0000000d;
  border: 1px solid #0000001a;
  padding: 15px;
  line-height: 24px;
}

.pricing {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 30px;
  display: flex;
}

.ex-service-pillars {
  justify-content: center;
  margin: 60px -10px 100px;
  display: flex;
}

.service-pillars-inner {
  flex: 0 auto;
  width: 25%;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.sucess-stories {
  background-color: #fafafa;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  padding: 120px 30px;
  display: none;
}

.container-success-stories {
  flex-wrap: nowrap;
  place-content: flex-start center;
  align-items: stretch;
  width: 100%;
  margin: -30px -10px;
  display: flex;
}

.success-block {
  border: 1px solid #000;
  border-radius: 4px;
  flex: 0 auto;
  align-self: auto;
  width: 50%;
  margin: 30px 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.h2-black {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Libre Franklin, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 36px;
}

.h2-black.cc-center {
  text-align: justify;
  margin-bottom: 40px;
}

.h2-black.cc-2-rows {
  margin-bottom: 25px;
}

.h2-black.cc-white-text {
  color: #fff;
}

.h2-black.text-span.cc-post-text {
  margin-bottom: 15px;
}

.h3-black {
  color: #000;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Libre Franklin, sans-serif;
  font-size: 16px;
  font-weight: 300;
}

.h3-black.cc-cta {
  color: var(--medium-sea-green);
  margin-bottom: 0;
}

.h3-black.cc-header {
  color: #fff;
  margin-bottom: 0;
  text-decoration: none;
}

.h3-black.cc-pricing {
  width: 100%;
}

.h3-black.cc-team-title {
  width: 100%;
  margin-bottom: 0;
}

.h3-black.cc-latest-posts {
  margin-bottom: 40px;
}

.partnerships {
  justify-content: center;
  align-items: center;
  padding: 120px 30px;
  display: none;
}

.image-3 {
  width: 100%;
  max-width: none;
  height: auto;
}

.partnerships-container-inner {
  flex-direction: column;
  align-items: center;
  width: 25%;
  margin-left: 10px;
  margin-right: 10px;
  display: flex;
}

.partnerships-container {
  justify-content: space-around;
  align-items: flex-start;
  margin-top: 60px;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.partnerships-image-banner {
  flex: 1;
  justify-content: center;
  align-items: center;
  max-width: 1440px;
  max-height: 720px;
  display: flex;
  overflow: hidden;
}

.h2-partnership-container {
  width: 50%;
  margin-bottom: 0;
}

.h2-partnership-container.cc-center {
  text-align: center;
  width: 65%;
  margin-bottom: 0;
}

.h2-partnership-container.cc-questions {
  margin-bottom: 60px;
}

.image-logo-size {
  width: 160px;
  max-width: none;
}

.image-4 {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  flex: 0 auto;
  max-width: 100%;
  max-height: 100%;
}

.image-5 {
  max-width: 98%;
}

.image-6 {
  max-width: 80%;
}

.service-pillars {
  justify-content: center;
  align-items: center;
  padding: 115px 30px;
  display: flex;
  position: relative;
}

.ex-capabilties-copy {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 30px;
  display: flex;
}

.testimonials {
  justify-content: center;
  align-items: center;
  padding: 115px 30px;
  display: flex;
  position: relative;
}

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

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

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

.contact-info-long {
  color: #999;
  width: 35%;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.contact-info-long.cc-text-black {
  color: #000;
  width: auto;
  margin-bottom: 10px;
}

.contact-info-row-long {
  margin-top: 40px;
  margin-bottom: 10px;
  display: flex;
}

.contact-intro-example, .connect-intro {
  flex-flow: column wrap;
  place-content: stretch center;
  align-items: center;
  padding: 120px 30px;
  display: flex;
}

.connect-info {
  width: 50%;
  margin-top: -10px;
  margin-bottom: -10px;
}

.connect-info-row {
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
}

.h2-container-connect {
  width: 75%;
  margin-bottom: 90px;
}

.h2-container-connect.cc-center {
  text-align: center;
  width: 65%;
  margin-bottom: 0;
}

.h2-container-connect.cc-questions {
  margin-bottom: 60px;
}

.partnership-intro, .success-intro, .solutions-intro {
  background-color: #fafafa;
  justify-content: center;
  align-items: center;
  padding: 115px 30px 75px;
  display: flex;
}

.about-us-intro {
  background-color: #fff;
  justify-content: center;
  align-items: center;
  padding: 115px 30px 75px;
  display: flex;
}

.management-team {
  justify-content: center;
  align-items: center;
  padding: 115px 30px;
  display: flex;
  position: relative;
}

.management-team-facts {
  justify-content: center;
  margin-left: -10px;
  margin-right: -10px;
  display: flex;
}

.container-mgmt-inner {
  flex: 0 auto;
  justify-content: center;
  width: 25%;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.team-banner {
  justify-content: center;
  align-items: center;
  margin-top: -50px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.team-image-banner {
  flex: 1;
  justify-content: center;
  align-items: center;
  max-width: 1440px;
  max-height: 720px;
  display: flex;
  overflow: hidden;
}

.team-intro {
  background-color: #fafafa;
  justify-content: center;
  align-items: center;
  padding: 115px 30px 75px;
  display: flex;
}

.header-inner-button {
  text-align: right;
  flex-direction: row;
  width: 57%;
  display: none;
}

.service-pillars-copy, .partherships {
  justify-content: center;
  align-items: center;
  padding: 115px 30px;
  display: flex;
  position: relative;
}

.successes {
  justify-content: center;
  align-items: center;
  padding: 120px 30px;
  display: flex;
}

.solutions {
  justify-content: center;
  align-items: center;
  padding: 115px 30px;
  display: flex;
  position: relative;
}

.containersolutions-inner {
  flex: 0 auto;
  justify-content: flex-start;
  width: 33.33%;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.solution-facts {
  justify-content: flex-start;
  margin-left: -10px;
  margin-right: -10px;
  display: flex;
}

.solutions-block {
  background-color: #fff;
  border: 1px solid #f7f7f7;
  width: 100%;
  padding: 10px;
  box-shadow: 0 5px 20px #0000000d;
}

.image-pics, .image-pic {
  border-radius: 50%;
  width: 140px;
  max-width: none;
  height: auto;
  margin-bottom: 20px;
}

.about-pimato {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 115px 30px 0;
  display: flex;
  position: relative;
}

.about-container {
  z-index: 1;
  aspect-ratio: auto;
  object-fit: fill;
  width: 100%;
  max-width: 888px;
  position: relative;
}

.about-container.cc-center {
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: none;
  display: flex;
}

.about-container.cc-cta {
  display: flex;
}

.about-container.cc-footer {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.about-container.cc-right {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.about-container.cc-blogpost {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 770px;
  display: block;
}

.about-container.cc-contact {
  display: flex;
}

.cta-button {
  background-color: #fafafa;
  justify-content: center;
  align-items: center;
  padding: 150px 30px;
  display: flex;
}

.value-intro {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 30px;
  display: flex;
}

.button-success {
  background-color: var(--white);
  color: #242873;
  border-radius: 4px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 60px;
  padding-left: 0;
  padding-right: 0;
  font-family: Libre Franklin, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 30px;
  transition: background-color .2s;
  display: flex;
}

.bi, .business-intelligence, .data-maagement, .aiml, .cloud {
  justify-content: center;
  align-items: center;
  padding: 120px 30px;
  display: flex;
}

.biaiml-container-inner {
  flex-direction: column;
  align-items: center;
  width: 33.33%;
  margin-left: 10px;
  margin-right: 10px;
  display: flex;
}

.data-management, .aiml-partners {
  justify-content: center;
  align-items: center;
  padding: 120px 30px;
  display: flex;
}

.image-square {
  border-radius: 0%;
  width: 140px;
  max-width: none;
  height: auto;
}

.success-story {
  justify-content: center;
  align-items: stretch;
  margin-left: -10px;
  margin-right: -10px;
  display: flex;
}

.success-block-final {
  border: 1px solid #f7f7f7;
  flex-wrap: wrap;
  align-content: space-between;
  align-items: stretch;
  width: 50%;
  margin-left: 10px;
  margin-right: 10px;
  transition: box-shadow .2s;
  display: flex;
  box-shadow: 0 5px 20px #0000000d;
}

.success-block-separator {
  background-color: var(--pi-blue);
  width: 100%;
  height: 1px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.success-info {
  padding: 50px 40px 40px;
}

.successes-block-final {
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.success-title {
  color: #000;
  font-family: Libre Franklin, sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 78px;
}

.image-64px {
  width: 64px;
  max-width: none;
  margin-bottom: 20px;
}

.image-280px {
  width: 280px;
  max-width: none;
  margin-bottom: 20px;
}

.aws-badges {
  justify-content: center;
  align-items: center;
  padding: 120px 30px;
  display: flex;
}

.badges-container {
  align-items: flex-start;
  margin-left: -10px;
  margin-right: -10px;
  display: flex;
}

.badges-container-inner {
  width: 50%;
  margin-left: 10px;
  margin-right: 10px;
}

.badges-container-inner-txt {
  width: 50%;
  margin-top: 20px;
  margin-left: 10px;
  margin-right: 10px;
}

.business-objectives {
  justify-content: center;
  align-items: center;
  padding: 120px 30px;
  display: flex;
}

.cloudflex-story {
  justify-content: center;
  align-items: stretch;
  margin-left: -10px;
  margin-right: -10px;
  display: flex;
}

.cloudflex-block {
  border: 1px solid #f7f7f7;
  flex-wrap: wrap;
  align-content: space-between;
  align-items: stretch;
  width: 33.33%;
  margin-left: 10px;
  margin-right: 10px;
  transition: box-shadow .2s;
  display: flex;
  box-shadow: 0 5px 20px #0000000d;
}

.cloudflex-offering {
  padding: 50px 40px 40px;
}

.cloudflex-title {
  color: #000;
  font-family: Libre Franklin, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 36px;
}

.button-cloudflex {
  background-color: var(--white);
  color: #242873;
  border-radius: 4px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 60px;
  padding-left: 0;
  padding-right: 0;
  font-family: Libre Franklin, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 30px;
  transition: background-color .2s;
  display: flex;
}

.cta-basic {
  -webkit-text-fill-color: inherit;
  background-color: #fff0;
  background-clip: border-box;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: none;
  padding: 115px 30px 75px;
  display: flex;
}

.info-and-image {
  justify-content: center;
  align-items: center;
  padding: 120px 30px;
  display: flex;
}

.info-and-image-container {
  align-items: flex-start;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.h2-container-txt {
  flex-direction: column;
  justify-content: flex-start;
  align-self: auto;
  width: 50%;
  margin-bottom: 90px;
  padding-top: 20px;
  display: flex;
}

.h2-container-txt.cc-center {
  text-align: center;
  width: 65%;
  margin-bottom: 0;
}

.h2-container-txt.cc-questions {
  margin-bottom: 60px;
}

.h2-container-txt.cc-center-long {
  text-align: center;
  width: 90%;
  margin-bottom: 0;
}

.container-3x3-no-bg {
  justify-content: center;
  align-items: center;
  padding: 120px 30px;
  display: flex;
}

.form {
  text-align: right;
}

.h2-container-stretch {
  width: 100%;
  margin-bottom: 90px;
}

.h2-container-stretch.cc-center {
  text-align: center;
  width: 65%;
  margin-bottom: 0;
}

.h2-container-stretch.cc-questions {
  margin-bottom: 60px;
}

.h2-container-stretch.cc-center-long {
  text-align: center;
  width: 90%;
  margin-bottom: 0;
}

.image-85-pcnt {
  max-width: 85%;
}

.success-banner {
  justify-content: center;
  align-items: center;
  margin-top: -60px;
  padding-left: 30px;
  padding-right: 30px;
  display: none;
}

.header-inner-home {
  background-color: var(--white);
  background-image: url('../images/Home.jpg');
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: auto;
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-height: none;
  margin-top: -90px;
  padding: 180px 30px 90px;
  display: flex;
}

.header-inner-home.cc-header-extra {
  padding-bottom: 210px;
}

.header-inner-partnerships {
  background-color: var(--white);
  background-image: url('../images/Partnerships.jpg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: auto;
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-height: none;
  margin-top: -90px;
  padding: 180px 30px 90px;
  display: flex;
}

.header-inner-partnerships.cc-header-extra {
  padding-bottom: 210px;
}

.header-inner-success {
  background-color: var(--white);
  background-image: url('../images/Success.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-height: none;
  margin-top: -90px;
  padding: 180px 30px 90px;
  display: flex;
}

.header-inner-success.cc-header-extra {
  padding-bottom: 210px;
}

.header-inner-solutions {
  background-color: var(--white);
  background-image: url('../images/Solutions.jpg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: auto;
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-height: none;
  margin-top: -90px;
  padding: 180px 30px 90px;
  display: flex;
}

.header-inner-solutions.cc-header-extra {
  padding-bottom: 210px;
}

.header-inner-cloudflex {
  background-color: var(--white);
  background-image: url('../images/CloudFlex.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: auto;
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-height: none;
  margin-top: -90px;
  padding: 180px 30px 90px;
  display: flex;
}

.header-inner-cloudflex.cc-header-extra {
  padding-bottom: 210px;
}

.header-inner-about {
  background-color: var(--white);
  background-image: url('../images/About.jpg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: auto;
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-height: none;
  margin-top: -90px;
  padding: 180px 30px 90px;
  display: flex;
}

.header-inner-about.cc-header-extra {
  padding-bottom: 210px;
}

.header-inner-contact {
  background-color: var(--white);
  background-image: url('../images/Contact.jpg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: auto;
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-height: none;
  margin-top: -90px;
  padding: 180px 30px 90px;
  display: flex;
}

.header-inner-contact.cc-header-extra {
  padding-bottom: 210px;
}

.cta-banner {
  background-image: url('../images/image-premium-banner.jpg');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-height: 720px;
  padding: 120px 30px;
  display: flex;
}

.cta-banner-pimato {
  background-image: url('../images/CTA-Banner.jpg');
  background-position: 0 100%;
  background-size: cover;
  background-attachment: fixed;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-height: 720px;
  padding: 120px 30px;
  display: flex;
}

.legal {
  color: var(--off-black);
  background-color: #0000000d;
  padding: 15px;
  font-family: IBM Plex Mono, sans-serif;
  line-height: 24px;
}

.modern-slavery {
  justify-content: center;
  align-items: center;
  padding: 120px 30px;
  display: flex;
}

.nav-link-2 {
  color: var(--black);
  font-family: Libre Franklin, sans-serif;
  font-weight: 600;
}

.nav-link-2.w--current {
  color: var(--black);
}

.brochures {
  justify-content: center;
  align-items: center;
  padding: 120px 30px;
  display: flex;
}

.grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-columns: 1fr 1fr 1fr;
  width: 90%;
}

.container-2 {
  width: 20%;
  height: 100px;
  max-height: 0;
}

.container-3 {
  background-image: url('../images/1.png');
  background-position: 50%;
  background-size: cover;
  width: 216px;
  height: 305px;
  margin-bottom: 10px;
}

.container-4 {
  background-image: url('../images/digital-marketing.png');
  background-position: 50%;
  background-size: cover;
  width: 216px;
  height: 305px;
  margin-bottom: 10px;
}

.container-5 {
  background-image: url('../images/3.png');
  background-position: 50%;
  background-size: cover;
  width: 216px;
  height: 305px;
  margin-bottom: 10px;
}

.container-6 {
  background-image: url('../images/4.png');
  background-position: 50%;
  background-size: cover;
  width: 216px;
  height: 305px;
  margin-bottom: 10px;
}

.container-7 {
  background-image: url('../images/5.png');
  background-position: 50%;
  background-size: cover;
  width: 216px;
  height: 305px;
  margin-bottom: 10px;
}

.container-8 {
  background-image: url('../images/6.png');
  background-position: 50%;
  background-size: cover;
  width: 216px;
  height: 305px;
  margin-bottom: 10px;
}

.container-9, .container-10, .container-11 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.container-12 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 0;
  display: flex;
}

.container-13, .container-14 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 40px;
  display: flex;
}

.button-2, .button-3, .button-4, .button-5, .button-6, .button-7 {
  background-color: var(--pi-blue);
  text-align: center;
  border-radius: 10px;
  width: 66%;
  font-family: Libre Franklin, sans-serif;
  font-weight: 600;
}

.section {
  background-color: var(--white);
  opacity: 1;
  background-image: url('../images/tech-1.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  justify-content: flex-start;
  align-items: center;
  height: 100vh;
  margin-top: -90px;
  padding: 180px 30px;
  display: flex;
}

.navbar-logo-left {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.navbar-logo-left-container {
  z-index: 5;
  background-color: #0000;
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 20px;
}

.navbar-logo-left-container.shadow-three {
  flex-flow: row;
  flex: none;
  order: 0;
  align-self: auto;
  width: 100%;
  max-width: 1140px;
  margin: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  display: block;
}

.container-15 {
  justify-content: space-between;
  width: 100%;
  max-width: 940px;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

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

.nav-menu-two {
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

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

.nav-link-3:hover {
  color: #1a1b1fbf;
}

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

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

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

.nav-dropdown-toggle:hover {
  color: #1a1b1fbf;
}

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

.nav-dropdown-icon {
  margin-right: 10px;
}

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

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

.nav-dropdown-link {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
}

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

.nav-divider {
  background-color: #e4ebf3;
  width: 1px;
  height: 22px;
  margin-left: 15px;
  margin-right: 15px;
}

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

.nav-link-accent:hover {
  color: #1a1b1fbf;
}

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

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

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

.navbar-no-shadow-container {
  z-index: 5;
  background-color: #0000;
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 20px;
}

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

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

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

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

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

.section-2 {
  background-color: #000211a1;
  background-image: linear-gradient(#135be24f, #000000ad);
  height: 100vh;
  margin-top: 0;
}

.hero-section-2 {
  height: 100vh;
  min-height: 100vh;
  margin-top: -70px;
}

.background-video-18 {
  width: 100%;
  height: 100%;
}

.div-block-38 {
  position: absolute;
  inset: 0%;
}

.div-block-39 {
  background-image: linear-gradient(#ededed57, #ededed57);
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 60px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.text-block-157 {
  color: #000;
  letter-spacing: .5px;
  font-size: 16px;
}

.heading-78 {
  color: #363942;
  letter-spacing: 1px;
  margin: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 43px;
  font-weight: 900;
  line-height: 50px;
}

.text-span-113 {
  color: #ff4d34;
}

.text-block-158 {
  color: #000;
  letter-spacing: .5px;
  width: 750px;
  font-size: 16px;
}

.background-video-19 {
  width: 100%;
  height: 100%;
  margin-top: -90px;
  display: block;
}

.navbar-logo-center-container {
  z-index: 5;
  background-color: #0000;
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

.navbar-logo-center-container.shadow-three {
  width: 100%;
  max-width: 1140px;
}

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

.navbar-wrapper-three {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.navbar-brand-three {
  z-index: 5;
  position: absolute;
}

.nav-menu-wrapper-three {
  width: 100%;
}

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

.nav-menu-block {
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

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

.nav-link-4:hover {
  color: #1a1b1fbf;
}

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

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

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

.nav-dropdown-toggle-2:hover {
  color: #1a1b1fbf;
}

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

.nav-dropdown-icon-2 {
  margin-right: 10px;
}

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

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

.nav-dropdown-link-2 {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
}

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

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

.nav-link-accent-2:hover {
  color: #1a1b1fbf;
}

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

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

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

.navbar-logo-left-container-2 {
  z-index: 5;
  background-color: #0000;
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 20px;
}

.navbar-logo-left-container-2.shadow-three {
  width: 100%;
  max-width: 1140px;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

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

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

.nav-divider-2 {
  background-color: #e4ebf3;
  width: 1px;
  height: 22px;
  margin-left: 15px;
  margin-right: 15px;
}

.button-8 {
  border: 1px solid var(--\<unknown\|relume-variable-neutral-shade-7\>);
  background-color: var(--\<unknown\|relume-variable-neutral-shade-7\>);
  color: var(--\<unknown\|relume-variable-neutral-white\>);
  text-align: center;
  padding: .75rem 1.5rem;
  text-decoration: none;
}

.button-8.is-small {
  padding: .5rem 1.25rem;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

.button-8.is-secondary {
  background-color: var(--\<unknown\|relume-variable-transparent\>);
  color: var(--\<unknown\|relume-variable-neutral-shade-7\>);
}

.button-8.is-secondary.is-small {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

.button-8.is-link {
  background-color: var(--\<unknown\|relume-variable-transparent\>);
  color: var(--\<unknown\|relume-variable-neutral-shade-7\>);
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

.button-8.is-link.is-icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

.navbar1_menu-button {
  padding: 0;
}

.navbar1_menu-buttons {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-left: 1rem;
  display: flex;
}

.dropdown-chevron {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.navbar1_dropdown-link {
  padding: .5rem 1rem;
}

.navbar1_dropdown-link.w--current {
  color: var(--\<unknown\|relume-variable-neutral-shade-7\>);
}

.navbar1_component {
  border-bottom-style: solid;
  border-bottom-width: 0;
  border-bottom-color: var(--\<unknown\|relume-variable-color-scheme-1-background\>);
  background-color: var(--\<unknown\|relume-variable-color-scheme-1-background\>);
  height: auto;
  min-height: 4.5rem;
  color: var(--\<unknown\|relume-variable-color-scheme-1-text\>);
  align-items: center;
  width: calc(100% - 2rem);
  margin: auto;
  padding: 20px 0%;
  display: block;
  position: sticky;
  top: 5px;
}

.navbar1_container {
  justify-content: space-between;
  align-items: center;
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
}

.navbar1_dropdown-toggle {
  grid-column-gap: .5rem;
  align-items: center;
  padding: .5rem 1rem;
  display: flex;
}

.navbar1_link {
  padding: .5rem 1rem;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

.navbar1_link.w--current {
  color: var(--\<unknown\|relume-variable-neutral-shade-7\>);
}

.navbar1_logo-link {
  padding-left: 0;
}

.navbar1_dropdown-list.w--open {
  border: var(--\<unknown\|relume-variable-border-width\>) solid var(--\<unknown\|relume-variable-color-scheme-1-border\>);
  border-radius: var(--\<unknown\|relume-variable-radius-small\>);
  background-color: var(--\<unknown\|relume-variable-color-scheme-1-background\>);
  padding: .5rem;
}

.navbar1_menu {
  align-items: center;
  display: flex;
  position: static;
}

.navbar_logo-link {
  padding-left: 0;
}

.dropdown-link-39 {
  border-top: 1px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
  font-weight: 600;
}

.dropdown-link-39:hover {
  color: #4f76f6;
  font-weight: 600;
}

.dropdown-link-43 {
  font-weight: 600;
}

.dropdown-link-43:hover {
  color: #4f76f6;
}

.dropdown-link-40 {
  font-weight: 600;
}

.dropdown-link-40:hover {
  color: #4f76f6;
}

.dropdown-toggle-13 {
  color: #353943;
  padding: 8px 40px 8px 10px;
  font-weight: 500;
}

.text-block-381 {
  color: #fff;
}

.text-block-381:hover {
  color: #4f76f6;
}

.navbar-glass-tintt {
  background-color: var(--trans);
  opacity: 1;
  pointer-events: none;
  mix-blend-mode: darken;
  border-radius: 50rem;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.text-block-382 {
  color: #000;
  font-weight: 600;
}

.text-block-382:hover {
  color: #4f76f6;
}

.dropdown-list-24 {
  background-color: #f2f2f2;
  border-radius: 7px;
  display: none;
}

.dropdown-list-23 {
  background-color: #f2f2f2;
  border-radius: 4px;
  display: none;
}

.button-43 {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  background-color: var(--trans);
  color: #906464;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 99px;
  justify-content: center;
  align-items: center;
  padding: .5rem 2rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: background-color .5s, color .5s;
  display: flex;
}

.button-43:hover {
  color: var(--dark-blue);
  background-color: #ffffff7a;
}

.navbar-glass-shine {
  pointer-events: none;
  background-color: #c0c0c005;
  border-radius: 50rem;
  position: absolute;
  inset: 0%;
  overflow: hidden;
  box-shadow: inset -1px -1px 1px 1px #ffffff36, inset 2px 2px 1px #ffffff36;
}

.navbar-5 {
  z-index: 2000;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #05061fcf;
  border-radius: 50rem;
  justify-content: center;
  align-items: stretch;
  width: calc(100% - 2rem);
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 5px 0;
  display: block;
  position: sticky;
  top: 5px;
  box-shadow: 0 0 5px #0000001a, 0 0 20px #0003;
}

.navbar_container {
  border-radius: 50rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
}

.navbar_logo {
  height: auto;
  margin-top: 5px;
  margin-bottom: 0;
}

.navbar_link {
  color: #fff;
  padding: .5rem 1rem;
  font-weight: 600;
}

.navbar_link:hover {
  color: #ffffff70;
  border-bottom: 1px #8fa5c2;
}

.navbar_link.w--current {
  color: #4f76f6;
}

.navbar_link._1 {
  border-style: none;
  border-width: 0 0 1px;
  border-color: var(--white);
}

.navbar_link._1.w--current {
  color: var(--white);
}

.dropdown-link-38 {
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  font-weight: 600;
}

.dropdown-link-38:hover {
  color: #4f76f6;
}

.navbar_menu {
  align-items: center;
  display: flex;
  position: static;
}

.dropdown-toggle-14 {
  color: #353943;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 10px;
  font-weight: 600;
}

.navbar_menu-buttons {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-left: 1rem;
  display: flex;
}

.navbar-main-container {
  pointer-events: auto;
  max-width: 100rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: block;
}

.navbar_menu-button {
  padding: 0;
}

.text-block-383, .text-block-383:hover {
  color: var(--white);
}

.div-block-40 {
  position: absolute;
  inset: 0%;
}

.div-block-41 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-left: 100px;
  padding-right: 100px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.text-block-384 {
  color: var(--white);
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
}

.text-block-385 {
  color: #fff;
  text-align: center;
  width: 800px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  display: block;
}

.text-block-386 {
  color: var(--white);
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.text-block-387 {
  border-bottom: 1px solid var(--pi-blue);
  text-align: center;
  padding: 60px 0;
  font-family: Montserrat, sans-serif;
  line-height: 30px;
}

.bold-text {
  color: var(--dark-blue);
  font-size: 40px;
  font-weight: 400;
}

.div-block-43 {
  padding: 60px 40px;
}

.text-span-114 {
  color: var(--black);
  font-size: 16px;
  line-height: 60px;
}

.section-3 {
  padding: 80px 100px 100px;
}

.text-block-388 {
  color: var(--dark-blue);
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 45px;
}

.text-span-115 {
  color: var(--green-pimato);
}

.div-block-44 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 20px;
  display: block;
}

.button-44 {
  color: var(--dark-blue);
  text-align: center;
  background-color: #d7dadd;
  border-radius: 11px;
  padding: 10px 40px;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  box-shadow: 0 0 13px #fff;
}

.button-44:hover {
  box-shadow: 0 0 13px 3px #fff;
}

.layout242_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;
  display: grid;
}

.margin-bottom, .margin-bottom.margin-xxlarge, .margin-bottom.margin-small, .margin-bottom.margin-medium, .margin-bottom.margin-xsmall, .margin-bottom.margin-tiny {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

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

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

.container-large {
  cursor: default;
  width: 100%;
  max-width: 80rem;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
}

.padding-section-large {
  cursor: default;
  padding: 0;
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.button-group.is-center {
  justify-content: center;
}

.section_layout242 {
  background-color: var(--\<unknown\|relume-variable-color-scheme-1-background\>);
  color: var(--\<unknown\|relume-variable-color-scheme-1-text\>);
}

.layout242_item-icon-wrapper {
  display: inline-block;
}

.heading-style-h5 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.icon-1x1-medium {
  width: 3rem;
  height: 3rem;
}

.padding-global {
  padding: 0%;
}

.margin-top, .margin-top.margin-medium, .margin-top.margin-xxlarge, .margin-top.margin-small {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.heading-style-h3 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.layout242_item {
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.text-block-389 {
  color: #000;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.div-block-45 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 100px 0 20px;
  display: grid;
}

.div-block-46 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 1px none var(--trans);
  background-image: none;
  border-radius: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch start;
  height: 300px;
  padding: 20px 20px 10px;
  display: grid;
  box-shadow: 0 2px 5px #0003;
}

.text-block-390 {
  color: var(--dark-blue);
  text-align: left;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

.text-block-391 {
  color: var(--black);
  text-align: left;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
}

.div-block-47, .div-block-48 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 1px none var(--dark-grey);
  background-image: none;
  border-radius: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch start;
  height: 300px;
  padding: 20px 20px 10px;
  display: grid;
  box-shadow: 0 2px 5px #0003;
}

.div-block-49 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 1px none var(--trans);
  background-image: none;
  border-radius: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch start;
  height: 300px;
  padding: 20px 20px 10px;
  display: grid;
  box-shadow: 0 2px 5px #0003;
}

.div-block-50 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 1px none var(--dark-grey);
  background-image: none;
  border-radius: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch start;
  height: 300px;
  padding: 20px 20px 10px;
  display: grid;
  box-shadow: 0 2px 5px #0003;
}

.text-block-392 {
  color: var(--dark-blue);
  text-align: left;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

.text-block-393 {
  color: var(--black);
  text-align: left;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
}

.text-block-394 {
  color: var(--dark-blue);
  text-align: left;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

.text-block-395 {
  color: var(--black);
  text-align: left;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
}

.text-block-396 {
  color: var(--dark-blue);
  text-align: left;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

.text-block-397 {
  color: var(--black);
  text-align: left;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
}

.text-block-398 {
  color: var(--dark-blue);
  text-align: left;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

.text-block-399 {
  color: var(--black);
  text-align: left;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
}

.image-7 {
  background-color: var(--light-dark-bue);
  border-radius: 10px;
  width: 50px;
  height: 50px;
  padding: 5px;
  box-shadow: 0 2px 5px #0003, 0 2px 5px #0003;
}

.image-8, .image-9, .image-10, .image-11 {
  background-color: var(--light-dark-bue);
  border-radius: 10px;
  width: 50px;
  height: 50px;
  padding: 5px;
  box-shadow: 0 2px 5px #0003;
}

.text-block-400 {
  color: var(--black);
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
}

.text-block-401 {
  color: var(--dark-blue);
  text-align: center;
  border-bottom: 1px #000;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 45px;
}

.div-block-51 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-top: 1px #000;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  place-items: center;
  margin-top: 60px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: grid;
}

.section-4 {
  border: 1px solid var(--light-dark-bue);
  background-color: var(--light-grey);
  overflow-wrap: normal;
  background-image: none;
  border-radius: 20px;
  margin: 80px 40px;
  padding: 80px;
  box-shadow: 0 2px 5px #0003;
}

.div-block-52 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--light-dark-bue);
  background-image: none;
  background-size: auto;
  background-attachment: scroll;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  height: 300px;
  padding: 20px;
  display: grid;
}

.div-block-53 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--white);
  background-image: none;
  background-size: auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  height: 300px;
  padding: 20px;
  display: grid;
}

.div-block-54 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--light-dark-bue);
  background-image: none;
  background-size: auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  height: 300px;
  padding: 20px;
  display: grid;
}

.text-block-402, .text-block-403, .text-block-404 {
  color: var(--dark-blue);
  font-family: Montserrat, sans-serif;
  font-size: 50px;
  font-weight: 800;
  line-height: 50px;
}

.text-block-405, .text-block-406, .text-block-407 {
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

.text-block-408, .text-block-409 {
  padding-top: 20px;
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
}

.text-block-410 {
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
}

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

.div-block-56 {
  line-height: 14px;
}

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

.logo1_logo {
  max-height: 3.5rem;
}

.heading-style-h6 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.section_logo1 {
  background-color: var(--\<unknown\|relume-variable-color-scheme-1-background\>);
  color: var(--\<unknown\|relume-variable-color-scheme-1-text\>);
}

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

.logo1_list {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-top: .5rem;
  padding-bottom: .5rem;
  display: flex;
}

.carousel-container {
  display: flex;
  position: relative;
  overflow: hidden;
}

.logo-container {
  background-color: var(--dark-blue);
  padding-top: 30px;
  padding-bottom: 30px;
}

.div-block-57 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--trans);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: center;
  min-width: 100%;
  padding: 0 10px;
  display: grid;
  position: static;
}

.logo-image {
  width: 170px;
  height: 120px;
}

.section-5 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-image: linear-gradient(96deg, #020020, #000c224a), url('../images/layout-10.png');
  background-position: 0 0, 100% 100%;
  background-size: auto, cover;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  padding: 60px 100px;
  display: block;
}

.section-5._1 {
  background-image: linear-gradient(96deg, #020020, #000c224a), url('../images/TELCO-15_1.png');
}

.div-block-58 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--trans);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  display: grid;
}

.div-block-59 {
  background-color: var(--white);
  border-radius: 20px;
  margin-top: 20px;
  box-shadow: 0 2px 5px #0003;
}

.text-block-411 {
  font-family: Montserrat, sans-serif;
}

.text-block-412 {
  color: var(--dark-blue);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 40px;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 45px;
}

.text-style-tagline {
  justify-content: center;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.text-size-medium {
  text-align: center;
  padding-top: 0;
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
}

.heading-style-h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.section_header62 {
  background-color: var(--\<unknown\|relume-variable-color-scheme-1-background\>);
  color: var(--\<unknown\|relume-variable-color-scheme-1-text\>);
}

.text-block-413 {
  width: 600px;
  color: var(--white);
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 40px;
}

.text-block-414 {
  color: var(--white);
  text-align: left;
  margin-top: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
}

.button-45 {
  box-shadow: 0 0 13px 0 var(--white);
  color: var(--dark-blue);
  background-color: #d7dadd;
  border-radius: 11px;
  margin-top: 20px;
  padding: 10px 40px;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

.button-45:hover {
  box-shadow: 0 0 13px 3px var(--white);
}

.div-block-60 {
  background-color: var(--trans);
  border-radius: 20px;
  padding: 5px;
}

.image-12 {
  border-radius: 20px;
  padding-top: 0;
}

.div-block-61 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.footer3_legal-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: center;
  display: flex;
}

.footer3_link-list {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: flex-start start;
  display: flex;
}

.footer3_logo-link {
  float: none;
  padding-left: 0;
}

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

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

.footer3_social-link {
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  display: flex;
}

.footer3_credit-text {
  font-size: .875rem;
}

.footer3_menu-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

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

.footer3_legal-link {
  font-size: .875rem;
  text-decoration: underline;
}

.footer3_component {
  background-color: var(--\<unknown\|relume-variable-color-scheme-1-background\>);
  color: var(--\<unknown\|relume-variable-color-scheme-1-text\>);
}

.footer3_top-wrapper {
  grid-column-gap: 4vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  align-items: start;
}

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

.footer3_social-list {
  grid-column-gap: .75rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  place-items: start;
  display: flex;
}

.text-size-small {
  font-size: .875rem;
}

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

.divider-horizontal {
  width: 100%;
  height: var(--\<unknown\|relume-variable-divider-width\>);
  background-color: var(--\<unknown\|relume-variable-color-scheme-1-border\>);
}

.footer3_link {
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
}

.footer-dark {
  background-color: #f5f7fa;
  background-image: url('../images/layout-5.png');
  background-position: 50% 0;
  background-size: cover;
  border-bottom: 1px solid #e4ebf3;
  padding: 50px 40px 15px;
  position: relative;
  box-shadow: 0 1px 9px 2px #0003;
}

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

.footer-wrapper {
  justify-content: space-between;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding-left: 10px;
  padding-right: 40px;
  display: flex;
}

.footer-content {
  grid-column-gap: 70px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.title-small {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}

.footer-link {
  color: var(--white);
  margin-top: 12px;
  margin-bottom: 6px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--green-pimato);
}

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

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

.footer-divider {
  background-color: #cbcfd4;
  width: 100%;
  height: 1px;
  margin-top: 70px;
  margin-bottom: 15px;
}

.footer-copyright-center {
  text-align: center;
  font-size: 14px;
  line-height: 16px;
}

.image-13 {
  height: 150px;
  margin-left: -6px;
  padding-left: 0;
}

.text-block-415 {
  width: 350px;
  color: var(--white);
}

.image-14 {
  width: 20px;
  height: 20px;
}

.image-14.icon-1x1-medium {
  color: #333;
}

.image-15, .image-16 {
  width: 20px;
  height: 20px;
}

.footer-dark-2 {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 50px 30px 15px;
  position: relative;
}

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

.footer-wrapper-2 {
  justify-content: space-between;
  align-items: flex-start;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer-content-2 {
  grid-column-gap: 70px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: auto auto 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.bold-text-2 {
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-weight: 400;
}

.img-3 {
  justify-content: flex-end;
  width: 15%;
  height: 30px;
  margin-bottom: 0;
  display: flex;
}

.field-label-4 {
  color: var(--white);
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
}

.submit-button-4 {
  background-color: var(--light-dark-bue);
  width: 100%;
  max-width: 100%;
  color: var(--dark-blue);
  border-radius: 20px;
  margin-top: 10px;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 2px 5px #03030369, inset 0 2px 5px 1px #ffffff6b;
}

.submit-button-4:hover {
  color: #353943;
  background-color: #fff;
  font-weight: 600;
}

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

.img {
  width: 15%;
  max-width: 50%;
  height: 30px;
  margin-bottom: 0;
  padding-left: 0;
}

.text-block-286 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: #353943;
  text-align: left;
  letter-spacing: .25px;
  width: 400px;
  margin-top: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  display: flex;
}

.form-5 {
  margin-top: 20px;
  margin-bottom: 40px;
}

.div-block-95 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  width: 40%;
  margin-right: 100px;
  display: flex;
}

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

.text-block-284 {
  color: var(--white);
  text-align: center;
  margin-top: 31px;
  margin-bottom: 20px;
  padding-top: 0;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

.text-field-9, .textarea {
  border-radius: 20px;
}

.text-block-285 {
  color: var(--white);
  text-transform: uppercase;
  padding-bottom: 5px;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
}

.heading-106 {
  width: 400px;
  color: var(--dark-blue);
  text-align: left;
  text-transform: uppercase;
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  display: flex;
}

.link-94 {
  color: var(--white);
  padding-left: 10px;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  text-decoration: none;
}

.text-field-8 {
  border-radius: 20px;
}

.text-block-287 {
  color: var(--white);
  margin-left: 10px;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
}

.section-43 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-image: linear-gradient(#fff0, #3539432b);
  background-repeat: repeat;
  background-size: auto;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 0%;
  margin-bottom: 0;
  margin-left: 0%;
  padding: 120px 50px;
  display: flex;
}

.div-block-123 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.columns-26 {
  margin-top: 10px;
}

.heading-107 {
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 500;
}

.container-481 {
  background-color: var(--dark-blue);
  border-radius: 10px;
  width: auto;
  margin: 0;
  padding: 40px;
}

.text-block-416 {
  color: var(--black);
  text-align: center;
  margin-top: 60px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.bold-text-3 {
  color: var(--black);
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

.text-block-417 {
  color: var(--dark-blue);
  text-align: center;
  text-transform: capitalize;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 45px;
}

.section-44 {
  background-color: var(--trans);
  padding: 60px 100px 140px;
}

.text-block-418 {
  color: var(--black);
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.div-block-124 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-top: 80px;
  margin-bottom: 60px;
  display: block;
}

.image-17, .image-18, .image-19, .image-20 {
  background-color: var(--light-dark-bue);
  border-radius: 10px;
  width: 60px;
  height: 60px;
  padding: 5px;
  box-shadow: 0 2px 5px #0003;
}

.div-block-125 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--white);
  border-radius: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding: 0;
  display: grid;
  box-shadow: 0 2px 5px #0003;
}

.div-block-126, .div-block-127, .div-block-128 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--white);
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  height: 250px;
  padding: 0;
  display: grid;
  box-shadow: 0 2px 5px #0003;
}

.text-block-419, .text-block-420, .text-block-421, .text-block-422 {
  color: var(--dark-blue);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.div-block-129 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-130 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.image-21 {
  height: auto;
  display: block;
}

.image-22 {
  height: auto;
}

.div-block-131 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding: 40px;
  display: grid;
}

.div-block-132, .div-block-133, .div-block-134 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding: 0;
  display: grid;
}

.div-block-135 {
  background-image: url('../images/888.jpg');
  background-position: 0 0;
  background-size: cover;
  border-radius: 20px;
  height: 300px;
}

.div-block-136 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 60px;
  display: block;
}

.stack_wrapper {
  grid-column-gap: 23px;
  grid-row-gap: 23px;
  flex-flow: column;
  display: flex;
}

.stack_card {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px solid var(--light-greyy);
  background-color: var(--white);
  background-image: linear-gradient(0deg, var(--light-dark-bue), white);
  border-radius: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 350px;
  margin-bottom: 9rem;
  display: grid;
  position: sticky;
  top: 14rem;
  box-shadow: 0 2px 12px #0003;
}

.stack_card._2 {
  background-color: var(--white);
  margin-bottom: 6rem;
  top: 17rem;
}

.stack_card._3 {
  background-color: var(--white);
  margin-bottom: 3rem;
  top: 20rem;
}

.stack_card._4 {
  background-color: var(--white);
  margin-bottom: 0;
  position: sticky;
  top: 23rem;
}

.div-block-137 {
  background-image: url('../images/888.jpg');
  background-position: 50% 100%;
  background-size: cover;
  border-radius: 1rem;
}

.div-block-138 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image-23 {
  height: auto;
}

.div-block-139 {
  padding: 40px;
}

.div-block-140 {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  flex-flow: column;
  margin-top: 40px;
  display: flex;
}

.div-block-141 {
  padding: 40px;
}

.div-block-142 {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  flex-flow: column;
  margin-top: 40px;
  display: flex;
}

.div-block-143 {
  padding: 40px;
}

.div-block-144 {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  flex-flow: column;
  margin-top: 40px;
  display: flex;
}

.div-block-145 {
  padding: 40px;
}

.div-block-146 {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  flex-flow: column;
  margin-top: 40px;
  display: flex;
}

.div-block-147 {
  background-image: url('../images/116840.jpg');
  background-position: 50%;
  background-size: cover;
}

.div-block-148 {
  background-image: url('../images/2149126945.jpg');
  background-position: 0 0;
  background-size: cover;
}

.div-block-149 {
  background-image: url('../images/2150165975.jpg');
  background-position: 0 0;
  background-size: cover;
}

.image-24 {
  height: auto;
}

.section_gallery21 {
  overflow: hidden;
}

.gallery21_component {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  cursor: default;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  align-items: start;
}

.gallery21_mask {
  width: 50%;
  overflow: visible;
}

.gallery21_slide-nav {
  height: 1.75rem;
  font-size: .5rem;
  inset: auto auto 0% 0%;
}

.slider-arrow-icon_default {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.slider-arrow {
  border: 1px solid var(--\<unknown\|relume-variable-color-scheme-1-border\>);
  background-color: var(--\<unknown\|relume-variable-color-scheme-1-foreground\>);
  width: 3rem;
  height: 3rem;
  color: var(--\<unknown\|relume-variable-color-scheme-1-text\>);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.slider-arrow.is-bottom-next {
  inset: auto 0% 0% auto;
}

.slider-arrow.is-bottom-previous {
  inset: auto 4rem 0% auto;
}

.gallery21_image-wrapper {
  border-radius: var(--\<unknown\|relume-variable-radius-large\>);
  flex-flow: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.gallery21_slide {
  padding-right: 2rem;
}

.gallery21_slider {
  background-color: var(--\<unknown\|relume-variable-transparent\>);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-bottom: 5rem;
  position: relative;
}

.gallery21_lightbox-link {
  width: 100%;
}

.gallery21_image {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.heading-style-h2 {
  font-family: Montserrat, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.section-45 {
  padding: 80px 100px 140px;
}

.text-block-423 {
  color: var(--black);
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.text-block-424 {
  color: var(--dark-blue);
  text-align: center;
  text-transform: capitalize;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 45px;
}

.text-block-425 {
  outline-offset: 0px;
  pointer-events: auto;
  color: var(--black);
  text-align: center;
  text-transform: uppercase;
  outline: 3px #000;
  font-family: Montserrat, sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 60px;
  text-decoration: none;
}

.div-block-150 {
  overflow: visible;
}

.text-block-426, .text-block-427, .text-block-428 {
  text-align: right;
}

.text-block-429 {
  aspect-ratio: auto;
  color: var(--white);
  letter-spacing: 3px;
  margin-bottom: 40px;
  font-family: Montserrat, sans-serif;
  font-size: 35px;
  font-weight: 300;
  line-height: 40px;
  text-decoration: none;
  position: absolute;
}

.div-block-151 {
  background-color: #b3b3b300;
  background-image: linear-gradient(180deg, var(--trans), black);
  opacity: 0;
  width: 100%;
  margin-left: -32px;
  padding-right: 0;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.text-block-431 {
  color: var(--white);
  letter-spacing: 3px;
  margin-bottom: 40px;
  font-family: Montserrat, sans-serif;
  font-size: 35px;
  font-weight: 300;
  line-height: 40px;
  position: absolute;
}

.image-25 {
  aspect-ratio: 1;
  opacity: 0;
  object-fit: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: clip;
}

.image-25:hover {
  opacity: 31;
}

.text-block-432 {
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 40px;
  font-family: Montserrat, sans-serif;
  font-size: 35px;
  font-weight: 300;
  line-height: 40px;
  position: absolute;
}

.text-block-433, .text-block-434 {
  color: var(--white);
  margin-bottom: 40px;
  font-family: Montserrat, sans-serif;
  font-size: 35px;
  font-weight: 300;
  line-height: 40px;
  position: absolute;
}

.div-block-152 {
  position: sticky;
  top: 6rem;
  bottom: auto;
}

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

.form_checkbox {
  align-items: center;
  margin-bottom: 0;
  padding-left: 1.25rem;
  display: flex;
}

.form_checkbox-label {
  margin-bottom: 0;
}

.form_message-error-wrapper {
  margin-top: 1rem;
  padding: 0;
}

.form_field-label {
  margin-bottom: .5rem;
  font-weight: 400;
}

.form_message-success {
  color: #027a48;
  background-color: #ecfdf3;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.5rem;
  display: flex;
}

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

.padding-section-large-2 {
  padding-top: 40px;
  padding-bottom: 140px;
}

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

.max-width-medium.align-center {
  margin-bottom: 60px;
}

.form_message-success-wrapper {
  margin-top: 1rem;
  padding: 0;
}

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

.form_checkbox-icon {
  border: 1px solid var(--\<unknown\|relume-variable-neutral-shade-7\>);
  cursor: pointer;
  border-radius: 0;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.25rem;
  margin-right: .5rem;
  transition: all .2s;
}

.form_checkbox-icon.w--redirected-checked {
  box-shadow: none;
  background-color: #000;
  background-size: 16px 16px;
  border-width: 1px;
  border-color: #000;
}

.form_checkbox-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
}

.error-text {
  color: #e23939;
}

.form_input {
  border: 1px solid var(--\<unknown\|relume-variable-neutral-shade-7\>);
  background-color: var(--\<unknown\|relume-variable-neutral-white\>);
  height: auto;
  min-height: 2.75rem;
  color: var(--\<unknown\|relume-variable-neutral-shade-7\>);
  border-radius: 0;
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.form_input:focus {
  border-color: var(--\<unknown\|relume-variable-neutral-shade-7\>);
}

.form_input::placeholder {
  color: var(--\<unknown\|relume-variable-neutral-shade-7-60\>);
}

.form_input.is-text-area {
  height: auto;
  min-height: 11.25rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
  overflow: auto;
}

.contact1_component {
  background-color: var(--trans);
  border-radius: 20px;
  flex-flow: column;
  align-items: center;
  display: flex;
}

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

.section_contact1 {
  background-color: var(--\<unknown\|relume-variable-color-scheme-1-background\>);
  color: var(--\<unknown\|relume-variable-color-scheme-1-text\>);
}

.padding-global-2 {
  padding-left: 5%;
  padding-right: 5%;
}

.form_field-wrapper {
  position: relative;
}

.contact1_form-block {
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 0;
}

.form_message-error {
  color: #b42318;
  background-color: #fef3f2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
}

.section-46 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-image: url('../images/layout-7_1.png');
  background-position: 100% 0;
  background-size: cover;
  background-attachment: scroll;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin-top: -89px;
  padding-left: 100px;
  padding-right: 100px;
  display: block;
}

.div-block-153 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  height: auto;
  padding: 0 100px 100px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.text-block-435 {
  width: 500px;
  color: var(--white);
  margin-top: 20px;
  font-family: Montserrat, sans-serif;
  line-height: 25px;
}

.text-block-436 {
  width: 500px;
  color: var(--white);
  text-transform: none;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 55px;
  font-weight: 800;
  line-height: 60px;
}

.text-block-437 {
  color: var(--white);
  text-transform: uppercase;
  margin-top: 15px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
}

.div-block-154 {
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: auto;
  margin-bottom: 0;
  padding: 0 100px 100px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.text-block-438 {
  text-align: center;
  justify-content: flex-start;
  align-items: flex-end;
  width: 130px;
  font-family: Montserrat, sans-serif;
  display: block;
}

.div-block-155 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image-26, .image-27 {
  width: 50px;
  height: 50px;
}

.image-28 {
  width: 50px;
  height: 50px;
  padding-top: 2px;
  padding-bottom: 2px;
}

.text-block-439, .text-block-440 {
  text-align: center;
  width: 130px;
  font-family: Montserrat, sans-serif;
}

.div-block-156 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-right: 1px solid var(--dark-blue);
  flex-flow: column;
  align-items: center;
  display: flex;
}

.div-block-157 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-left: 1px solid var(--dark-blue);
  flex-flow: column;
  align-items: center;
  margin-left: 0;
  padding-left: 20px;
  display: flex;
}

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

.text-block-441 {
  text-align: left;
  font-family: Montserrat, sans-serif;
  font-size: 35px;
  line-height: 40px;
  text-decoration: underline;
}

.section-47 {
  padding: 40px 100px 60px;
}

.div-block-159 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  background-color: var(--trans);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 0;
  padding: 20px;
  display: grid;
}

.div-block-160 {
  background-color: var(--white);
  border-radius: 10px;
  height: 420px;
  padding: 20px;
  box-shadow: 0 0 11px -1px #0003;
}

.div-block-161, .div-block-162 {
  background-color: var(--white);
}

.image-29, .image-30, .image-31 {
  height: auto;
}

.div-block-163 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  display: grid;
}

.div-block-164, .div-block-165, .div-block-166, .div-block-167 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--light-dark-bue);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 20px;
  display: grid;
}

.image-32 {
  height: auto;
}

.div-block-168 {
  background-color: var(--white);
}

.div-block-169 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: row;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  display: grid;
}

.div-block-170 {
  background-image: url('../images/layout.png');
  background-position: 50%;
  background-size: cover;
  border-radius: 10px;
  height: 200px;
}

.div-block-170._1 {
  background-image: url('../images/TELCO-14.png');
}

.div-block-170._2 {
  background-image: url('../images/TELCO-15_1.png');
}

.div-block-170._4 {
  background-image: url('../images/TELCO-16.png');
}

.div-block-170._5 {
  background-image: url('../images/TELCO-17.png');
}

.div-block-170._6 {
  background-image: url('../images/TELCO-18_1.png');
}

.div-block-170._7 {
  background-image: url('../images/TELCO-19_1.png');
}

.div-block-170._8 {
  background-image: url('../images/TELCO-21_1.png');
}

.div-block-170._9 {
  background-image: url('../images/TELCO-20_1.png');
}

.div-block-170._10 {
  background-image: url('../images/TELCO-22.png');
}

.bold-text-4 {
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  line-height: 25px;
}

.text-block-442 {
  color: var(--dark-blue);
  text-transform: uppercase;
  margin-bottom: 0;
  padding-top: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 25px;
}

.text-block-443 {
  margin-top: 5px;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-style: italic;
}

.div-block-171 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .25fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-172 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.image-33 {
  width: 15px;
  height: 15px;
  margin-top: 2px;
}

.div-block-173 {
  background-color: var(--dark-blue);
  border-radius: 10px;
  width: 100px;
  padding: 5px 15px;
  display: flex;
}

.text-block-444 {
  color: var(--green-pimato);
  margin-left: 5px;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  line-height: 20px;
}

.div-block-174 {
  background-color: var(--dark-blue);
  border-radius: 10px;
  width: 100px;
  padding: 5px;
}

.text-block-445 {
  color: var(--white);
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
}

.button-46 {
  text-align: center;
  border-radius: 20px;
  width: 30px;
  height: 30px;
  padding: 0;
}

.ikonik-nc5aw {
  color: #fff;
}

.ikonik-a1fb2g {
  width: 30px;
  height: 30px;
  color: var(--dark-blue);
  cursor: pointer;
}

.text-block-446 {
  color: var(--white);
  padding-left: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 50px;
  font-weight: 900;
  line-height: 60px;
}

.div-block-175 {
  padding: 0;
}

.section-48 {
  padding: 60px 100px;
}

.hero-subscribe-left {
  background-color: #f5f7fa;
  background-image: linear-gradient(#ffffffb0, #ffffffb0), url('../images/layout-1.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 100px;
  position: relative;
}

.hero-subscribe-left._1 {
  background-image: linear-gradient(#ffffffd1, #ffffffd1), url('../images/');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.container-482 {
  margin: 0;
}

.hero-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

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

.margin-bottom-24px {
  text-align: center;
  width: 500px;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

.hero-form {
  margin-bottom: 12px;
}

.hero-form-container {
  justify-content: center;
  align-items: stretch;
  margin-top: 10px;
  display: flex;
}

.hero-form-input {
  color: #1a1b1f;
  border: 1px solid #d1d6db;
  width: 240px;
  height: auto;
  margin-bottom: 0;
  margin-right: 9px;
  padding: 5px 16px;
  font-size: 14px;
  line-height: 20px;
  transition: all .2s;
}

.hero-form-input:hover, .hero-form-input:focus {
  border-color: #76879d;
}

.hero-form-input::placeholder {
  color: #1a1b1fcc;
}

.button-primary-3 {
  background-color: var(--dark-blue);
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 25px;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

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

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

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

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

.shadow-two {
  border-radius: 20px;
  width: 500px;
  height: 300px;
  box-shadow: 0 4px 24px #96a3b514;
}

.heading-108 {
  color: var(--dark-blue);
  text-align: center;
  font-family: Montserrat, sans-serif;
}

.section-49 {
  background-color: var(--dark-blue);
  height: 86vh;
  box-shadow: inset 0 0 5px 1px var(--white);
  background-image: linear-gradient(116deg, #000000c9 37%, #00000057), url('../images/layout-2.png');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  border-radius: 20px;
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
}

.section-49._1 {
  background-image: linear-gradient(116deg, #000000c9 37%, #00000057), url('../images/layout-1_1.png');
}

.body-3 {
  background-color: var(--white);
}

.div-block-176 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  margin: 20px 20px 0;
  padding-bottom: 0;
  display: flex;
  position: absolute;
  inset: 0%;
}

.div-block-177 {
  margin: 20px 20px 0;
  position: absolute;
  inset: 0%;
}

.text-block-447 {
  color: var(--white);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-left: 80px;
  font-family: Montserrat, sans-serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 40px;
  display: block;
}

.text-block-448 {
  width: 700px;
  color: var(--white);
  padding-top: 10px;
  padding-left: 80px;
  font-family: Montserrat, sans-serif;
  font-size: 45px;
  font-weight: 800;
  line-height: 50px;
}

.text-block-449 {
  width: 600px;
  color: var(--white);
  margin-top: 10px;
  padding-left: 80px;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
}

.text-span-116 {
  color: var(--green-pimato);
}

.section-50 {
  border: 1px #000;
  padding: 40px 100px;
}

.text-block-450 {
  border-bottom: 1px none var(--dark-blue);
  text-align: center;
  padding: 40px;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  line-height: 30px;
}

.text-span-117 {
  color: var(--dark-blue);
  font-weight: 700;
}

.section-51 {
  background-color: var(--bg-grey);
  padding: 60px 100px;
  box-shadow: 0 0 7px #0003;
}

.text-block-451 {
  color: var(--black);
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.text-block-452 {
  color: var(--dark-blue);
  text-align: center;
  text-transform: none;
  font-family: Montserrat, sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 35px;
}

.div-block-178 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 60px;
  display: grid;
}

.image-34 {
  height: auto;
  padding: 20px;
}

.image-35, .image-36 {
  background-color: var(--trans);
  border-radius: 0;
  height: auto;
  padding: 20px;
}

.image-36:hover {
  box-shadow: none;
}

.image-37 {
  background-color: var(--trans);
  height: auto;
  padding: 20px;
}

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

.div-block-179 {
  background-color: var(--white);
  border-radius: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: block;
  box-shadow: 0 2px 5px #0003;
}

.div-block-179:hover {
  box-shadow: 0 2px 10px 2px #0003;
}

.div-block-180 {
  background-color: var(--white);
  border-radius: 20px;
  flex-flow: column;
  align-items: center;
  display: block;
  box-shadow: 0 2px 5px #0003;
}

.div-block-180:hover {
  box-shadow: 0 2px 10px 2px #0003;
}

.div-block-181 {
  background-color: var(--white);
  border-radius: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: block;
  box-shadow: 0 2px 5px #0003;
}

.div-block-181:hover {
  box-shadow: 0 2px 10px 2px #0003;
}

.div-block-182 {
  background-color: var(--white);
  border-radius: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: block;
  box-shadow: 0 2px 5px #0003;
}

.div-block-182:hover {
  box-shadow: 0 2px 10px 2px #0003;
}

.div-block-183 {
  border-top: 1px solid var(--dark-blue);
  margin-top: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.div-block-184 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 60px;
  display: grid;
}

.text-block-454 {
  color: var(--black);
  text-align: center;
  margin-top: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}

.text-block-455 {
  color: var(--dark-blue);
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 35px;
}

.image-38, .image-39, .image-40, .image-41 {
  height: auto;
  padding: 20px;
}

.div-block-185 {
  border-radius: 20px;
  box-shadow: 0 2px 5px #0003;
}

.div-block-185:hover {
  box-shadow: 0 2px 10px 2px #0003;
}

.div-block-186 {
  border-radius: 20px;
  box-shadow: 0 2px 5px #0003;
}

.div-block-186:hover {
  box-shadow: 0 2px 10px 2px #0003;
}

.div-block-187 {
  border-radius: 20px;
  box-shadow: 0 2px 5px #0003;
}

.div-block-187:hover {
  box-shadow: 0 2px 10px 2px #0003;
}

.div-block-188 {
  border-radius: 20px;
  box-shadow: 0 2px 5px #0003;
}

.div-block-188:hover {
  box-shadow: 0 2px 10px 2px #0003;
}

.div-block-189 {
  padding-top: 0;
  padding-bottom: 60px;
}

.div-block-190 {
  border-top: 1px solid var(--dark-blue);
  margin-top: 60px;
  margin-bottom: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.text-block-456 {
  color: var(--black);
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  line-height: 30px;
}

.text-block-457 {
  color: var(--dark-blue);
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 35px;
}

.div-block-191 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 60px;
  padding-left: 60px;
  padding-right: 60px;
  display: grid;
}

.image-42, .image-43, .image-44 {
  height: auto;
  padding: 20px;
}

.image-45 {
  height: auto;
}

.div-block-192 {
  border-radius: 20px;
  box-shadow: 0 2px 5px #0003;
}

.div-block-192:hover {
  box-shadow: 0 2px 10px 2px #0003;
}

.div-block-193 {
  border-radius: 20px;
  box-shadow: 0 2px 5px #0003;
}

.div-block-193:hover {
  box-shadow: 0 2px 10px 2px #0003;
}

.div-block-194 {
  border-radius: 20px;
  box-shadow: 0 2px 5px #0003;
}

.div-block-194:hover {
  box-shadow: 0 2px 10px 2px #0003;
}

.gallery-scroll {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

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

.gallery-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.gallery-sticky {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: sticky;
  top: 80px;
}

.gallery-link {
  color: #1a1b1f;
  margin-bottom: 35px;
  font-size: 24px;
  line-height: 32px;
  text-decoration: none;
}

.gallery-link:hover {
  color: #1a1b1fcc;
}

.gallery-link.w--current {
  font-weight: 600;
}

.gallery-grid {
  grid-row-gap: 40px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.gallery-image-wrapper {
  position: relative;
}

.gallery-image {
  width: 100%;
}

.gallery-image-text {
  color: #f5f7fa;
  margin-bottom: 0;
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
}

.gallery-slider {
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.gallery-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.gallery-slide {
  background-color: #0000;
  height: auto;
}

.gallery-slide-wrapper {
  max-width: 47%;
  margin-right: 6%;
}

.gallery-slide-image {
  position: relative;
}

.gallery-slide-text {
  color: #f5f7fa;
  margin-bottom: 0;
  line-height: 32px;
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
}

.gallery-slider-left {
  justify-content: center;
  align-items: center;
  width: 40px;
  display: flex;
  left: -50px;
}

.gallery-slider-left:focus-visible, .gallery-slider-left[data-wf-focus-visible] {
  outline-offset: 0px;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.slider-arrow-embed {
  color: #1a1b1f;
}

.gallery-slider-right {
  justify-content: center;
  align-items: center;
  width: 40px;
  display: flex;
  right: -50px;
}

.gallery-slider-right:focus-visible, .gallery-slider-right[data-wf-focus-visible] {
  outline-offset: 0px;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.gallery-slide-nav {
  display: none;
}

.section-52 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-image: linear-gradient(180deg, var(--trans), black), linear-gradient(180deg, black, var(--trans)), url('../images/116840.jpg');
  background-position: 0 0, 0 0, 50%;
  background-size: auto, auto, cover;
  border-radius: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 20px;
  margin-left: 20px;
  margin-right: 20px;
  padding: 10px 80px;
  display: block;
}

.div-block-195 {
  background-image: none;
  background-position: 0 0;
  background-size: auto;
  border-radius: 20px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 500px;
  padding: 40px 0;
  display: flex;
}

.text-block-458 {
  color: var(--white);
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
}

.text-block-459 {
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 45px;
}

.text-block-460 {
  width: 700px;
  color: var(--white);
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
}

.text-block-461 {
  color: var(--white);
  text-transform: none;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 200;
}

.section-53 {
  background-image: linear-gradient(180deg, var(--trans), black), linear-gradient(180deg, black, var(--trans)), url('../images/5991.jpg');
  background-position: 0 0, 0 0, 0 0;
  background-size: auto, auto, auto;
  border-radius: 20px;
  margin: 0 20px 20px;
  padding: 10px 80px;
}

.section-54 {
  background-image: linear-gradient(180deg, var(--trans), black), linear-gradient(180deg, black, var(--trans)), url('../images/2151149095.jpg');
  background-position: 0 0, 0 0, 50% 0;
  background-size: auto, auto, cover;
  border-radius: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
  margin-right: 20px;
  padding: 10px 80px;
}

.section-55 {
  background-image: linear-gradient(180deg, var(--trans), black), linear-gradient(180deg, black, var(--trans)), url('../images/2148036872.jpg');
  background-position: 0 0, 0 0, 0 0;
  background-size: auto, auto, cover;
  border-radius: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
  margin-right: 20px;
  padding: 10px 80px;
}

.section-56 {
  background-image: linear-gradient(180deg, var(--trans), black), linear-gradient(180deg, black, var(--trans)), url('../images/5991.jpg');
  background-position: 0 0, 0 0, 50%;
  background-size: auto, auto, cover;
  border-radius: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
  margin-right: 20px;
  padding: 10px 80px;
}

.section-57 {
  background-image: linear-gradient(180deg, var(--trans) 42%, black), linear-gradient(180deg, black, var(--trans)), url('../images/2151149095.jpg');
  background-position: 0 0, 0 0, 50% 0;
  background-size: auto, auto, auto;
  border-radius: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
  margin-right: 20px;
  padding: 0 80px 20px;
}

.section-58 {
  padding: 0 20px 20px;
}

.div-block-196, .div-block-197, .div-block-198, .div-block-199, .div-block-200 {
  background-image: none;
  background-position: 0 0;
  background-size: auto;
  border-radius: 20px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 500px;
  padding: 40px 0;
  display: flex;
}

.div-block-201 {
  background-image: linear-gradient(180deg, var(--trans) 42%, black), linear-gradient(180deg, black, var(--trans)), url('../images/13633.png');
  background-position: 0 0, 0 0, 50%;
  background-size: auto, auto, cover;
  border-radius: 20px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 500px;
  margin-bottom: 0;
  padding: 40px 80px;
  display: flex;
}

.text-block-462, .text-block-463, .text-block-464, .text-block-465, .text-block-466, .text-block-467 {
  color: var(--white);
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
}

.text-block-468 {
  color: var(--white);
  text-align: left;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 45px;
}

.text-block-469 {
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 45px;
}

.text-block-470 {
  color: var(--white);
  text-align: right;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 45px;
}

.text-block-471 {
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 45px;
}

.text-block-472 {
  color: var(--white);
  text-align: left;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 45px;
}

.text-block-473 {
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 45px;
}

.text-block-474 {
  width: 700px;
  color: var(--white);
  text-align: left;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
}

.text-block-475 {
  width: 700px;
  color: var(--white);
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
}

.text-block-476 {
  width: 700px;
  color: var(--white);
  text-align: left;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
}

.text-block-477 {
  width: 900px;
  color: var(--white);
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
}

.text-block-478 {
  width: 700px;
  color: var(--white);
  text-align: left;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
}

.text-block-479 {
  width: 700px;
  color: var(--white);
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
}

.text-block-480 {
  color: var(--white);
  text-align: left;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 200;
}

.text-block-481 {
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 200;
}

.text-block-482 {
  color: var(--white);
  text-align: left;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 200;
}

.text-block-483 {
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 200;
}

.text-block-484 {
  color: var(--white);
  text-align: left;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 200;
}

.text-block-485 {
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 200;
}

.section-59 {
  background-image: linear-gradient(180deg, var(--trans) 42%, black), linear-gradient(180deg, black, var(--trans)), url('../images/5991.jpg');
  background-position: 0 0, 0 0, 50% 100%;
  background-size: auto, auto, cover;
  border-radius: 20px;
  margin-bottom: 140px;
  margin-left: 20px;
  margin-right: 20px;
  padding: 0 80px 20px;
}

.div-block-202 {
  background-image: none;
  background-position: 0 0;
  background-size: auto;
  border-radius: 20px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 500px;
  padding: 40px 0;
  display: flex;
}

.text-block-486 {
  color: var(--white);
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
}

.text-block-487 {
  color: var(--white);
  text-align: left;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 200;
}

.text-block-488 {
  color: var(--white);
  text-align: left;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 45px;
}

.text-block-489 {
  width: 700px;
  color: var(--white);
  text-align: left;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
}

.div-block-203 {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  background-color: var(--trans);
  border-radius: 10px;
  width: auto;
  margin-top: 10px;
  display: flex;
}

.image-46, .image-47, .image-48 {
  height: auto;
}

.div-block-204 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  width: auto;
  margin-top: 10px;
  display: flex;
}

.image-49, .image-50, .image-51 {
  height: auto;
}

.div-block-205, .div-block-206, .div-block-207, .div-block-208, .div-block-209 {
  background-color: var(--white);
  border-radius: 10px;
  width: 100px;
}

.image-52 {
  height: auto;
}

.div-block-210 {
  background-color: var(--white);
  border-radius: 10px;
  width: 100px;
}

.div-block-211 {
  margin-top: 10px;
}

.image-53 {
  height: auto;
}

.div-block-212 {
  background-color: var(--white);
  border-radius: 10px;
  width: 100px;
  margin-top: 10px;
}

.gallery-scroll-2 {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

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

.gallery-wrapper-2 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.gallery-sticky-2 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: sticky;
  top: 80px;
}

.gallery-link-2 {
  color: #1a1b1f;
  margin-bottom: 35px;
  font-size: 24px;
  line-height: 32px;
  text-decoration: none;
}

.gallery-link-2:hover {
  color: #1a1b1fcc;
}

.gallery-link-2.w--current {
  font-weight: 600;
}

.gallery-grid-2 {
  grid-row-gap: 40px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.gallery-image-wrapper-2 {
  position: relative;
}

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

.gallery-image-text-2 {
  color: #f5f7fa;
  margin-bottom: 0;
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
}

.image-54 {
  height: auto;
}

.div-block-213 {
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.image-55, .image-56 {
  height: auto;
}

.image-57 {
  background-color: var(--trans);
  border-radius: 0;
  height: auto;
}

.image-58 {
  height: auto;
}

.div-block-214 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  margin-top: 10px;
  display: flex;
}

.div-block-215, .div-block-216, .div-block-217, .div-block-218 {
  background-color: var(--white);
  border-radius: 10px;
  width: 100px;
}

.image-59 {
  height: auto;
}

.div-block-219 {
  justify-content: flex-start;
  margin-top: 10px;
  display: flex;
}

.div-block-220 {
  background-color: var(--white);
  border-radius: 10px;
  width: 100px;
}

.div-block-221 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: row;
  justify-content: flex-start;
  margin-top: 10px;
  display: flex;
}

.image-60, .image-61 {
  height: auto;
}

.div-block-222, .div-block-223 {
  background-color: var(--white);
  border-radius: 10px;
  width: 100px;
}

.div-block-224 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  margin-top: 10px;
  display: flex;
}

.image-62, .image-63 {
  height: auto;
}

.div-block-225, .div-block-226 {
  background-color: var(--white);
  border-radius: 10px;
  width: 100px;
}

.section-60 {
  background-image: linear-gradient(180deg, #000000c9 37%, var(--trans)), url('../images/layout-9.png');
  height: 86vh;
  box-shadow: inset 0 0 5px 1px var(--white);
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-radius: 20px;
  margin: 20px 20px 0;
}

.div-block-227 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  margin: 20px 20px 0;
  display: flex;
  position: absolute;
  inset: 0%;
}

.text-block-490 {
  color: var(--white);
  padding-left: 80px;
  font-family: Montserrat, sans-serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 40px;
}

.text-block-491 {
  width: 700px;
  color: var(--white);
  padding-top: 10px;
  padding-left: 80px;
  font-family: Montserrat, sans-serif;
  font-size: 45px;
  font-weight: 800;
  line-height: 50px;
}

.text-block-492 {
  width: 600px;
  color: var(--white);
  padding-top: 10px;
  padding-left: 80px;
  font-family: Montserrat, sans-serif;
}

.text-span-118 {
  color: var(--green-pimato);
}

.section-61 {
  padding: 140px 100px 100px;
}

.text-block-493 {
  font-family: Montserrat, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
}

.text-block-494 {
  width: auto;
  color: var(--dark-grey-2);
  margin-top: 20px;
  font-family: Montserrat, sans-serif;
  line-height: 25px;
}

.div-block-228 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1.75fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-span-119 {
  color: var(--dark-blue);
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.div-block-229 {
  padding-right: 40px;
}

.div-block-230 {
  background-color: var(--white);
  box-shadow: none;
  border: 1px solid #f1f1f1;
  border-radius: 20px;
  padding-bottom: 40px;
  padding-left: 10px;
  padding-right: 10px;
}

.text-block-495 {
  text-align: left;
  padding: 40px 20px 30px;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.div-block-231 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  padding: 0 20px 25px;
  display: flex;
}

.div-block-232 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--white);
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-233 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--light-dark-bue);
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-234 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image-64 {
  height: auto;
  padding: 17px;
}

.image-65 {
  height: auto;
  padding: 15px;
}

.div-block-235 {
  background-color: var(--light-dark-bue);
  border-radius: 20px;
}

.div-block-236 {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 10px;
}

.text-block-496 {
  text-align: left;
  margin-top: 5px;
  margin-bottom: 5px;
  font-family: Montserrat, sans-serif;
}

.text-block-497 {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

.text-block-498 {
  font-family: Montserrat, sans-serif;
}

.text-block-499 {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

.text-block-500 {
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 35px;
}

.div-block-237 {
  border-top: 1px solid #000;
  margin-top: 10px;
  margin-left: 20px;
  margin-right: 20px;
}

.div-block-238 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  place-items: center;
  display: flex;
}

.button-47 {
  background-color: var(--trans);
  background-image: url('../images/TELCO-5.png');
  background-position: 0 0;
  background-size: cover;
  width: 40px;
  height: 40px;
}

.button-48 {
  background-color: var(--trans);
  background-image: url('../images/TELCO-7.png');
  background-position: 0 0;
  background-size: cover;
  width: 40px;
  height: 40px;
}

.button-49 {
  background-color: var(--trans);
  background-image: url('../images/TELCO-18.png');
  background-position: 0 0;
  background-size: cover;
  width: 40px;
  height: 40px;
}

.button-50 {
  background-color: var(--trans);
  background-image: url('../images/');
  background-position: 0 0;
  background-size: cover;
  width: 40px;
  height: 40px;
}

.text-span-120 {
  font-size: 20px;
  line-height: 20px;
}

.text-span-121 {
  font-size: 17px;
}

.text-span-122 {
  font-size: 17px;
  line-height: 20px;
}

.image-66 {
  height: auto;
}

.section-62 {
  background-image: linear-gradient(180deg, #000000c9 59%, var(--trans)), url('../images/layout_1.png');
  height: 86vh;
  box-shadow: inset 0 0 5px 1px var(--white);
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  border-radius: 20px;
  margin: 20px 20px 0;
}

.background-video-20 {
  position: static;
}

.div-block-239 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: absolute;
  inset: 0%;
}

.text-block-501 {
  color: var(--white);
  padding-left: 80px;
  font-family: Montserrat, sans-serif;
  font-size: 25px;
  line-height: 40px;
}

.text-block-502 {
  width: 700px;
  color: var(--white);
  padding-top: 10px;
  padding-left: 80px;
  font-family: Montserrat, sans-serif;
  font-size: 45px;
  font-weight: 800;
  line-height: 50px;
}

.text-block-503 {
  width: 600px;
  color: var(--white);
  padding-top: 10px;
  padding-left: 80px;
  font-family: Montserrat, sans-serif;
}

.text-span-123, .text-span-124 {
  color: var(--green-pimato);
}

.section-63 {
  background-color: var(--trans);
  border-radius: 20px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 100px;
  overflow: visible;
}

.text-block-504 {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
}

.text-block-505 {
  color: var(--dark-blue);
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 30px;
}

.div-block-240 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: start;
  margin-top: 20px;
  display: flex;
}

.div-block-241 {
  margin-bottom: 60px;
}

.image-67, .image-68, .image-69 {
  height: auto;
}

.div-block-242, .div-block-243, .div-block-244 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border: 1px solid var(--light-dark-bue);
  background-color: var(--white);
  border-radius: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 350px;
  height: 350px;
  padding: 40px;
  display: flex;
  box-shadow: 0 2px 5px #a9a9d1;
}

.text-block-506, .text-block-507, .text-block-508 {
  text-align: left;
  margin-top: 20px;
  font-family: Montserrat, sans-serif;
}

.text-block-509, .text-block-510, .text-block-511 {
  align-items: center;
  margin-left: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 600;
  display: flex;
}

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

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

.features-wrapper-two {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.features-left {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 40%;
  display: flex;
}

.features-paragraph {
  margin-bottom: 24px;
}

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

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

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

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

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

.div-block-245 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch stretch;
  margin-top: 0;
  padding: 20px;
  display: grid;
}

.image-70 {
  width: 200px;
  height: auto;
}

.image-71, .image-72 {
  height: auto;
}

.text-block-512 {
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
}

.div-block-246 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  display: flex;
}

.image-73, .image-74 {
  background-color: var(--light-dark-bue);
  border-radius: 10px;
  width: 50px;
  height: 50px;
  padding: 5px;
}

.div-block-247, .div-block-248 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  display: flex;
}

.image-75 {
  background-color: var(--light-dark-bue);
  border-radius: 10px;
  width: 50px;
  height: 50px;
  padding: 5px;
}

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

.section-64 {
  border-bottom: 1px solid var(--pi-blue);
  margin-top: 0;
  margin-left: 20px;
  margin-right: 20px;
  padding: 40px 100px;
}

.text-block-513 {
  text-align: center;
  padding: 40px;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  line-height: 30px;
}

.text-span-125 {
  color: var(--dark-blue);
  font-weight: 700;
}

.text-block-514 {
  color: var(--dark-blue);
  margin-bottom: 5px;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.text-block-515 {
  font-family: Montserrat, sans-serif;
  font-weight: 500;
}

.section-65 {
  background-color: var(--white);
  border-radius: 0;
  margin-bottom: 80px;
  margin-left: 0;
  margin-right: 0;
  padding: 20px 100px;
  box-shadow: 0 2px 5px #0003, 0 0 8px #0003;
}

.section-66 {
  background-color: var(--light-grey);
  border-radius: 20px;
  margin-left: 20px;
  margin-right: 20px;
  padding: 80px;
}

.div-block-250 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-251 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  padding-right: 20px;
  display: flex;
}

.image-76 {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  padding: 10px;
}

.image-77 {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  padding: 5px;
}

.image-78 {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  padding: 7px;
}

.text-block-516 {
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
}

.text-span-126 {
  color: var(--dark-blue);
  font-weight: 700;
}

.div-block-252 {
  border: 1px solid var(--light-dark-bue);
  background-color: var(--white);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 2px 5px #a9a9d1;
}

.div-block-253, .div-block-254 {
  border: 1px solid var(--light-blue);
  background-color: var(--white);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 2px 5px #a9a9d1;
}

.text-block-517, .text-block-518 {
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  line-height: 25px;
}

.text-block-519 {
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  line-height: 25px;
}

.text-block-520, .text-block-521, .text-block-522 {
  font-family: Montserrat, sans-serif;
}

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

.section-67 {
  padding: 80px 0 60px;
}

.text-block-523 {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  line-height: 30px;
}

.text-block-524 {
  color: var(--dark-blue);
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 35px;
}

.div-block-256 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--light-grey);
  border-radius: 20px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1.75fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: stretch center;
  width: auto;
  margin-top: 80px;
  margin-left: 20px;
  margin-right: 20px;
  padding: 40px 40px 40px 80px;
  display: grid;
  box-shadow: 0 2px 5px #0003;
}

.div-block-257 {
  position: relative;
  inset: 0%;
}

.text-block-525 {
  padding: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
}

.div-block-258 {
  background-color: var(--trans);
  flex-flow: column;
  justify-content: space-around;
  align-items: flex-start;
  margin-left: 20px;
  display: flex;
  position: static;
  inset: 0%;
}

.text-block-526 {
  text-align: left;
  padding: 10px;
  font-family: Montserrat, sans-serif;
}

.text-block-527 {
  background-color: var(--light-dark-bue);
  border-radius: 20px;
  padding: 20px;
  font-family: Montserrat, sans-serif;
}

.text-span-127 {
  font-weight: 600;
}

.div-block-259 {
  margin-top: auto;
}

.image-79, .image-80 {
  height: auto;
}

.div-block-260 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--light-grey);
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1.75fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
  padding: 40px;
  display: grid;
  box-shadow: 0 2px 5px #0003;
}

.div-block-261 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--light-grey);
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1.75fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  margin: 20px 20px 0;
  padding: 40px;
  display: grid;
  box-shadow: 0 2px 5px #0003;
}

.div-block-262 {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-left: 20px;
  display: flex;
}

.text-block-528 {
  padding: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
}

.text-block-529 {
  padding: 10px;
  font-family: Montserrat, sans-serif;
}

.text-block-530 {
  background-color: var(--light-dark-bue);
  border-radius: 20px;
  padding: 20px;
  font-family: Montserrat, sans-serif;
}

.text-span-128 {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

.text-block-531 {
  padding: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
}

.text-block-532 {
  padding: 10px;
  font-family: Montserrat, sans-serif;
}

.text-block-533 {
  background-color: var(--light-dark-bue);
  border-radius: 20px;
  padding: 20px;
  font-family: Montserrat, sans-serif;
}

.div-block-263 {
  border-radius: 20px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-left: 20px;
  display: flex;
}

.text-span-129 {
  font-weight: 600;
}

.section-68 {
  margin-bottom: 60px;
  padding: 60px 100px 80px;
}

.text-block-534 {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  line-height: 30px;
}

.text-block-535 {
  color: var(--dark-blue);
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 35px;
}

.text-block-536 {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.text-span-130, .text-span-131, .text-span-132 {
  font-weight: 600;
}

.div-block-264 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-image: url('../images/'), linear-gradient(to bottom, var(--white), var(--white));
  box-shadow: none;
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: cover, auto;
  background-attachment: scroll, scroll;
  border-radius: 20px;
  flex-flow: column;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  padding: 40px;
  display: grid;
}

.div-block-265 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 150px;
  display: grid;
}

.div-block-266, .div-block-267 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 20px;
  display: grid;
}

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

.div-block-269 {
  text-align: right;
}

.div-block-270 {
  background-color: var(--trans);
  background-image: linear-gradient(180deg, #e7e7ef9e, var(--trans));
  text-align: right;
  border-radius: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  height: 250px;
  padding: 20px;
  display: flex;
  box-shadow: 0 2px 5px #a9a9d1;
}

.text-block-537, .text-block-538, .text-block-539 {
  width: auto;
  margin-top: 5px;
  font-family: Montserrat, sans-serif;
}

.text-block-540, .text-block-541, .text-block-542 {
  text-align: left;
  width: auto;
  margin-top: 5px;
  font-family: Montserrat, sans-serif;
}

.div-block-271 {
  background-color: var(--trans);
  background-image: linear-gradient(180deg, #e7e7ef9e, var(--trans));
  border-radius: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  height: 250px;
  padding: 20px;
  display: flex;
  box-shadow: 0 2px 5px #a9a9d1;
}

.div-block-272 {
  background-color: var(--trans);
  background-image: linear-gradient(#e7e7ef9e, #fff);
  border-radius: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  height: 250px;
  padding: 20px;
  display: flex;
  box-shadow: 0 2px 5px #a9a9d1;
}

.div-block-273 {
  background-color: var(--trans);
  background-image: linear-gradient(180deg, var(--light-dark-bue), var(--trans));
  border-radius: 20px;
  height: 250px;
  padding: 20px;
  box-shadow: 0 2px 5px #a9a9d1;
}

.div-block-274 {
  background-color: var(--trans);
  background-image: linear-gradient(180deg, #e7e7ef9e, var(--trans));
  border-radius: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  height: 250px;
  padding: 20px;
  display: flex;
  box-shadow: 0 2px 5px #a9a9d1;
}

.div-block-275 {
  background-color: var(--trans);
  background-image: linear-gradient(180deg, #e7e7ef9e, var(--trans));
  border-radius: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  height: 250px;
  padding: 20px;
  display: flex;
  box-shadow: 0 2px 5px #a9a9d1;
}

.div-block-276 {
  background-image: url('../images/');
  background-position: 0 0;
  background-size: auto;
  position: absolute;
  inset: 0% 0% auto;
}

.text-block-543, .text-block-544, .text-block-545 {
  text-align: left;
  letter-spacing: 1px;
}

.text-block-546, .text-block-547, .text-block-548 {
  letter-spacing: 1px;
}

.text-span-133 {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

.text-span-134, .text-span-135, .text-span-136, .text-span-137, .text-span-138 {
  font-weight: 600;
}

.section-69 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--light-grey);
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 100px;
  margin-left: 20px;
  margin-right: 20px;
  padding: 60px 80px;
  display: grid;
  box-shadow: 0 2px 5px #0003;
}

.div-block-277 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-278, .div-block-279 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 20px;
  display: grid;
}

.image-81 {
  width: 300px;
  height: auto;
  margin-left: -63px;
}

.text-block-549 {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
}

.text-block-550 {
  color: var(--dark-blue);
  margin-top: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 35px;
}

.text-block-551 {
  margin-top: 5px;
  font-family: Montserrat, sans-serif;
}

.div-block-280 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image-82, .image-83 {
  width: 50px;
  height: 50px;
}

.div-block-281 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  background-color: var(--white);
  background-image: none;
  background-size: auto;
  border-radius: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  padding: 15px;
  display: grid;
  box-shadow: 0 2px 5px #0003;
}

.div-block-282 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  border-left: 1px none var(--dark-grey);
  background-color: var(--white);
  background-image: none;
  background-size: auto;
  border-radius: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  padding: 15px;
  display: grid;
  box-shadow: 0 2px 5px #0003;
}

.text-block-552 {
  color: var(--pi-blue);
  text-align: right;
  font-family: Montserrat, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
}

.text-block-553 {
  width: 150px;
  color: var(--off-black);
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
}

.image-84 {
  width: auto;
  height: 100px;
}

.div-block-283 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--white);
  background-image: none;
  background-size: auto;
  border: 1px #000;
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 20px;
  display: block;
  box-shadow: 0 2px 5px #0003;
}

.div-block-284 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image-85 {
  width: 50px;
  height: 50px;
}

.div-block-285 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  border-right: 1px none var(--dark-grey);
  background-color: var(--white);
  background-image: none;
  background-size: auto;
  border-radius: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  padding: 15px;
  display: grid;
  box-shadow: 0 2px 5px #0003;
}

.image-86 {
  width: 50px;
  height: 50px;
}

.div-block-286 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  background-color: var(--white);
  background-image: none;
  background-size: auto;
  border-radius: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  padding: 15px;
  display: grid;
  box-shadow: 0 2px 5px #0003;
}

.text-block-554 {
  color: var(--pi-blue);
  text-align: right;
  font-family: Montserrat, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
}

.text-block-555 {
  width: 200px;
  color: var(--off-black);
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
}

.text-block-556 {
  color: var(--pi-blue);
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
}

.text-block-557 {
  color: var(--off-black);
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
}

.div-block-287 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-radius: 0;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.text-block-558 {
  color: var(--pi-blue);
  font-family: Montserrat, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
}

.text-block-559 {
  width: 200px;
  color: var(--off-black);
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
}

.text-block-560 {
  color: var(--pi-blue);
  font-family: Montserrat, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
}

.text-block-561 {
  width: 200px;
  color: var(--off-black);
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
}

.div-block-288 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 60px;
  display: grid;
}

.image-87, .image-88, .image-89 {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.image-90, .image-91 {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  display: block;
}

.image-92 {
  height: 50px;
  margin-bottom: 20px;
  display: block;
}

.button-51 {
  background-color: var(--dark-blue);
  text-align: center;
  vertical-align: middle;
  border-radius: 10px;
  width: 150px;
  margin-top: 15px;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 0 5px 2px #0003;
}

.button-51:hover {
  box-shadow: 0 0 5px 6px #0003;
}

.text-block-562, .text-block-562:hover {
  color: #fff;
}

.navbar_link-2 {
  color: #fff;
  padding: .5rem 1rem;
  font-weight: 600;
}

.navbar_link-2:hover {
  color: #ffffff70;
  border-bottom: 1px #8fa5c2;
}

.navbar_link-2.w--current {
  color: #4f76f6;
}

.navbar_link-2._1 {
  border: 0 #fff;
  border-bottom-width: 1px;
}

.button-52 {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  color: #906464;
  text-align: center;
  background-color: #fafafa00;
  border: 1px solid #fff;
  border-radius: 99px;
  justify-content: center;
  align-items: center;
  padding: .5rem 2rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: background-color .5s, color .5s;
  display: flex;
}

.button-52:hover {
  color: #000a64;
  background-color: #ffffff7a;
}

.navbar-glass-tintt-2 {
  opacity: 1;
  pointer-events: none;
  mix-blend-mode: darken;
  background-color: #fafafa00;
  border-radius: 50rem;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.section-70 {
  height: 86vh;
  box-shadow: inset 0 0 5px 1px var(--white);
  background-image: linear-gradient(76deg, #000000c9 37%, #00000057), url('../images/392af377fbe7e056e46f649ebe9ecfb3_layout-11-p-1600.png');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  border-radius: 20px;
  margin: 20px 20px 0;
}

.div-block-301 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  margin: 20px 20px 0;
  display: flex;
  position: absolute;
  inset: 0%;
}

.text-block-563 {
  color: var(--white);
  padding-left: 80px;
  font-family: Montserrat, sans-serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 40px;
}

.text-block-564 {
  width: 700px;
  color: var(--white);
  padding-top: 10px;
  padding-left: 80px;
  font-family: Montserrat, sans-serif;
  font-size: 45px;
  font-weight: 800;
  line-height: 50px;
}

.text-block-565 {
  color: var(--white);
  padding-top: 10px;
  padding-left: 80px;
  font-family: Montserrat, sans-serif;
}

.text-span-140 {
  color: var(--green-pimato);
}

.section-71 {
  padding: 40px 100px;
}

.text-block-566 {
  color: var(--black);
  text-align: center;
  padding: 40px;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  line-height: 30px;
}

.text-span-141 {
  color: var(--dark-blue);
  font-weight: 700;
}

.button-53 {
  border: 1px solid var(--\<unknown\|relume-variable-neutral-shade-7\>);
  background-color: var(--\<unknown\|relume-variable-neutral-shade-7\>);
  color: var(--\<unknown\|relume-variable-neutral-white\>);
  text-align: center;
  padding: .75rem 1.5rem;
  text-decoration: none;
}

.button-53.is-secondary {
  background-color: var(--\<unknown\|relume-variable-transparent\>);
  color: var(--\<unknown\|relume-variable-neutral-shade-7\>);
}

.team5_list {
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.team5_image-wrapper {
  border-radius: 100%;
  width: 5rem;
  height: 5rem;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

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

.text-size-large.text-weight-semibold {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
}

.section_team5 {
  background-color: var(--\<unknown\|relume-variable-color-scheme-1-background\>);
  color: var(--\<unknown\|relume-variable-color-scheme-1-text\>);
}

.social-icon {
  width: 1.5rem;
  height: 1.5rem;
}

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

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

.heading-style-h4 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.team5_item {
  text-align: center;
}

.team5_social {
  grid-column-gap: .875rem;
  grid-row-gap: .875rem;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  justify-content: center;
  align-self: center;
  display: flex;
}

.section-72 {
  margin-bottom: 100px;
  padding-left: 100px;
  padding-right: 100px;
}

.div-block-302 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--light-dark-bue);
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr 1fr;
  grid-auto-columns: 1fr;
  padding: 40px 40px 80px;
  display: grid;
  position: absolute;
  inset: 0%;
}

.image-93 {
  height: auto;
}

.slide-4 {
  background-color: var(--trans);
}

.slider-2 {
  background-color: var(--trans);
  height: 400px;
}

.icon-3, .icon-4 {
  color: var(--dark-blue);
}

.slide-nav-2 {
  margin-top: 0;
  font-size: 7px;
}

.div-block-303 {
  background-image: url('../images/TELCO-20_1.png');
  background-position: 50%;
  background-size: cover;
  border-radius: 0;
}

.text-block-567 {
  width: 250px;
}

.section-73 {
  background-color: var(--light-dark-bue);
  padding: 0 100px;
}

.div-block-304 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.button-54 {
  border: 1px solid var(--\<unknown\|relume-variable-neutral-shade-7\>);
  background-color: var(--\<unknown\|relume-variable-neutral-shade-7\>);
  color: var(--\<unknown\|relume-variable-neutral-white\>);
  text-align: center;
  padding: .75rem 1.5rem;
  text-decoration: none;
}

.button-54.is-secondary {
  background-color: var(--\<unknown\|relume-variable-transparent\>);
  color: var(--\<unknown\|relume-variable-neutral-shade-7\>);
}

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

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

.faq6_list-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: start stretch;
  display: grid;
}

.faq6_accordion {
  border: var(--\<unknown\|relume-variable-border-width\>) solid var(--\<unknown\|relume-variable-color-scheme-1-border\>);
  border-radius: var(--\<unknown\|relume-variable-radius-large\>);
  background-color: var(--\<unknown\|relume-variable-color-scheme-1-foreground\>);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  overflow: hidden;
}

.section_faq6 {
  background-color: var(--\<unknown\|relume-variable-color-scheme-1-background\>);
  color: var(--\<unknown\|relume-variable-color-scheme-1-text\>);
}

.faq6_icon-wrapper {
  align-self: flex-start;
  width: 2rem;
  display: flex;
}

.faq6_question {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  display: flex;
}

.faq6_answer {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  overflow: hidden;
}

.text-block-568 {
  font-family: Montserrat, sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 55px;
}

.section-74 {
  padding: 60px 40px;
}

.container-913 {
  background-image: url('../images/Image.png');
  background-position: 0 0;
  background-size: cover;
  border-radius: 10px;
  width: 200px;
  height: 200px;
  margin-left: 16px;
}

.container-211 {
  background-image: url('../images/NAREN_1.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 10px;
  width: 200px;
  height: 200px;
  margin-left: 16px;
}

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

.container-217 {
  border-left: 1px solid #d3d3d3;
  justify-content: flex-start;
  align-items: flex-start;
  width: 255px;
  margin-left: 0;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.slider-3 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #ddd0;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  height: 350px;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 25px;
  padding-bottom: 70px;
  display: flex;
}

.our-team {
  padding: 120px 40px 0;
}

.slide-6 {
  background-color: #fafafa;
  border-radius: 20px;
  width: 500px;
  height: 400px;
  margin-right: 10px;
  padding-top: 0;
  padding-left: 0;
  box-shadow: 0 2px 5px #0003;
}

.text-span-172 {
  color: #4f76f6;
}

.text-block-91 {
  color: #000;
  letter-spacing: 0;
  font-size: 24px;
  font-weight: 900;
  line-height: 44px;
}

.text-block-127 {
  color: #4f76f6;
  text-align: center;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 900;
}

.text-span-94 {
  color: #4f76f6;
}

.container-213 {
  background-color: #2d2f3700;
  border-left: 1px solid #d8d8d8;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 255px;
  margin: 0;
  padding-top: 0;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.slide-7 {
  background-color: #fafafa;
  border-radius: 20px;
  width: 500px;
  height: 400px;
  margin-right: 10px;
  padding: 0;
  box-shadow: 0 2px 5px #0003;
}

.mask-5 {
  color: #fafafa;
  width: 1040px;
  height: 440px;
  padding: 20px;
}

.slide-8 {
  color: #fafafa;
  background-color: #fafafa;
  border-radius: 20px;
  width: 500px;
  height: 400px;
  margin-right: 10px;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  box-shadow: 0 2px 5px #0003;
}

.grid-40 {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
}

.container-224 {
  background-image: url('../images/Mary.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 10px;
  width: 200px;
  height: 200px;
  margin-left: 16px;
}

.container-914 {
  border-left: 1px solid #d3d3d3;
  padding-left: 20px;
}

.mask-2 {
  width: auto;
}

.container-220 {
  background-image: url('../images/Thani.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 10px;
  width: 200px;
  height: 200px;
  margin-left: 16px;
}

.container-216 {
  background-color: #2d2f3700;
  border-radius: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 160px;
  margin-left: 16px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.icon-5 {
  color: #363942;
  background-color: #d3d3d300;
}

.heading-53 {
  color: #000;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}

.text-block-120 {
  color: #000;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.grid-39 {
  grid-column-gap: 0px;
  grid-row-gap: 15px;
}

.text-span-78 {
  color: #4f76f6;
}

.icon-6 {
  color: #363942;
  background-color: #d3d3d300;
  padding-right: 0;
}

.text-span-89 {
  color: #4f76f6;
}

.container-212 {
  background-color: #2d2f3700;
  border-radius: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 160px;
  margin-left: 16px;
  padding-top: 0;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.container-912 {
  align-items: center;
  height: 420px;
  margin: 0;
  padding-right: 10px;
  display: flex;
}

.text-span-96 {
  color: #4f76f6;
}

.text-block-569 {
  color: #000;
  margin-top: 10px;
  margin-left: -10px;
  font-size: 13px;
  font-weight: 400;
}

.text-span-88 {
  color: #4f76f6;
}

.grid-38 {
  grid-column-gap: 0px;
  grid-row-gap: 13px;
}

.text-span-90 {
  color: #4f76f6;
  font-size: 16px;
  font-weight: 900;
}

.text-block-570 {
  color: #4f76f6;
  text-align: center;
  letter-spacing: .5px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 900;
}

.slide-37 {
  background-color: #fafafa;
  border-radius: 20px;
  width: 500px;
  height: 400px;
  margin-right: 10px;
  box-shadow: 0 2px 5px #0003;
}

.text-span-97, .text-span-170 {
  color: #4f76f6;
}

.slider-4 {
  justify-content: center;
  align-items: center;
  width: auto;
  height: 500px;
  margin-top: 0;
  margin-right: 0;
  padding-bottom: 40px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  overflow: hidden;
}

.slide-38 {
  background-color: #fafafa;
  border-radius: 20px;
  width: 500px;
  max-width: 100%;
  height: 400px;
  margin-left: 0;
  margin-right: 10px;
  padding-top: 0;
  padding-left: 0;
  box-shadow: 0 2px 5px #0003;
}

.container-223 {
  border-left: 1px solid #d3d3d3;
  width: 255px;
  padding-top: 0;
  padding-left: 20px;
}

.right-arrow-2 {
  margin-left: 0;
}

.text-block-125 {
  color: #000;
  text-align: center;
  font-weight: 500;
}

.container-221 {
  background-color: #2d2f3700;
  border-radius: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 160px;
  margin-left: 16px;
  margin-right: 0;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.grid-68 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 84px;
  height: 420px;
  padding: 20px 10px;
}

.slide-nav-3 {
  border-radius: 0;
  width: 50%;
  max-width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 20px;
  font-size: 10px;
}

.slide-39 {
  width: 20%;
}

.heading-68 {
  color: #000;
  margin-top: 10px;
  margin-left: -10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.leadership {
  margin-bottom: 0;
  padding-bottom: 60px;
}

.container-215 {
  background-image: url('../images/Veleswaran.jpg');
  background-position: 0 0;
  background-size: cover;
  border-radius: 10px;
  width: 200px;
  height: 200px;
  margin-left: 16px;
}

.text-span-93 {
  color: #4f76f6;
}

.grid-37 {
  grid-column-gap: 0px;
  grid-row-gap: 13px;
}

.text-block-126 {
  color: #000;
  margin-top: 10px;
  margin-left: -10px;
  padding-top: 0;
}

.st_wrapper {
  position: fixed;
  inset: auto 1.5rem 1.5rem auto;
}

.text-block-571 {
  color: #000;
  margin-top: 0;
  margin-left: -10px;
  font-size: 13px;
  font-weight: 400;
}

.slide-5 {
  width: 100%;
}

.text-block-128 {
  color: #000;
  text-align: center;
  font-weight: 500;
}

.text-block-123 {
  color: #000;
  margin-left: -10px;
  padding-top: 10px;
}

.text-block-124 {
  color: #4f76f6;
  text-align: center;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 900;
}

.text-span-171 {
  color: #4f76f6;
}

.text-block-92 {
  color: #363942;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 400;
}

.container-225 {
  background-color: #2d2f3700;
  border-radius: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 160px;
  margin-left: 16px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.text-block-572 {
  color: #000;
  text-align: center;
  width: 200px;
  font-size: 14px;
  font-weight: 500;
}

.container-210 {
  border-radius: 20px;
  justify-content: flex-start;
  align-items: center;
  height: 400px;
  margin: 0;
  padding-top: 0;
  padding-left: 0;
  padding-right: 15px;
  display: flex;
}

.container-222 {
  justify-content: flex-start;
  align-items: center;
  height: 400px;
  margin: 0;
  padding-right: 15px;
  display: flex;
}

.bold-text-25 {
  color: #4f76f6;
  font-weight: 700;
}

.container-214 {
  justify-content: center;
  align-items: center;
  height: 400px;
  margin: 0;
  padding-left: 0;
  padding-right: 15px;
  display: flex;
}

.text-block-129 {
  color: #000;
  margin-top: 10px;
  margin-left: -10px;
}

.text-block-122 {
  color: #000;
  text-align: center;
  font-weight: 500;
}

.container-915 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 160px;
  margin-top: 208px;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.container-219 {
  border-left: 1px solid #d3d3d3;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 255px;
  margin-left: auto;
  padding-top: 0;
  padding-left: 20px;
  padding-right: 10px;
  display: flex;
}

.text-block-119 {
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
}

.container-218 {
  justify-content: flex-start;
  align-items: center;
  height: 400px;
  margin: 0;
  padding-right: 15px;
  display: flex;
}

.text-block-121 {
  color: #4f76f6;
  text-align: center;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 900;
}

.button-55 {
  border: 1px solid var(--\<unknown\|relume-variable-neutral-shade-7\>);
  background-color: var(--\<unknown\|relume-variable-neutral-shade-7\>);
  color: var(--\<unknown\|relume-variable-neutral-white\>);
  text-align: center;
  padding: .75rem 1.5rem;
  text-decoration: none;
}

.button-55.is-secondary {
  background-color: var(--\<unknown\|relume-variable-transparent\>);
  color: var(--\<unknown\|relume-variable-neutral-shade-7\>);
}

.team8_social {
  grid-column-gap: .875rem;
  grid-row-gap: .875rem;
  text-align: center;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  display: flex;
}

.team8_image-wrapper {
  border-radius: var(--\<unknown\|relume-variable-radius-medium\>);
  justify-content: center;
  align-items: center;
  width: auto;
  display: flex;
  overflow: hidden;
}

.team8_image {
  aspect-ratio: 1;
  object-fit: cover;
  width: 50%;
  height: 50%;
}

.team8_list {
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  place-content: stretch;
  place-items: center;
  display: grid;
}

.heading-style-h2-2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.paragraph-2, .paragraph-3 {
  text-align: justify;
}

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

.paragraph-5 {
  text-align: justify;
}

.section-75 {
  padding: 60px 100px;
}

.text-block-573 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.section-76 {
  padding: 20px 60px 100px;
}

.div-block-305 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.text-block-574 {
  border-style: none none solid;
  border-width: 1px;
  border-color: var(--trans) var(--trans) var(--white);
  background-color: var(--trans);
  width: 130px;
  color: var(--white);
  text-align: center;
  letter-spacing: .5px;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 15px;
}

.div-block-306 {
  background-color: var(--trans);
  width: auto;
  height: auto;
  margin-top: 140px;
  margin-bottom: 10px;
  padding-right: 20px;
  display: flex;
}

.div-block-307 {
  background-image: none;
  background-position: 0 0;
  border-radius: 20px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  height: 400px;
  padding: 20px;
  display: flex;
}

.text-block-575 {
  border-right: 1px solid var(--white);
  color: var(--white);
  margin-right: 10px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

.text-block-576 {
  color: var(--white);
  margin-top: 0;
}

.div-block-308 {
  background-image: linear-gradient(#000000e0, #fff0), url('../images/Raizon-Colour-Scheme-2.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-radius: 20px;
  height: 400px;
}

.div-block-309 {
  background-image: linear-gradient(#fff0, #000), url('../images/');
  background-position: 0 0, 0 0;
  background-size: auto, auto;
  border-radius: 20px;
}

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

.div-block-311 {
  background-image: url('../images/layout-10.png');
  background-position: 0 100%;
  background-size: auto;
  border-radius: 20px;
}

.div-block-312 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  display: grid;
}

.div-block-313 {
  border: 1px solid #ece9e9;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 2px 5px #0003;
}

.div-block-314 {
  background-image: url('../images/NAREN_1.jpg');
  background-position: 50%;
  background-size: cover;
  height: 250px;
}

.div-block-315, .div-block-316, .div-block-317 {
  border: 1px solid #ece9e9;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 2px 5px #0003;
}

.div-block-318 {
  background-image: url('../images/Thani.jpg');
  background-position: 50%;
  background-size: cover;
  height: 250px;
}

.div-block-319 {
  background-image: url('../images/Image.png');
  background-position: 50%;
  background-size: cover;
  height: 250px;
}

.div-block-320 {
  background-image: url('../images/Mary.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 0;
  height: 250px;
}

.div-block-321, .div-block-322, .div-block-323, .div-block-324 {
  margin-top: 20px;
}

.button-56, .button-57, .button-58 {
  background-color: var(--trans);
  background-image: url('../images/TELCO-5.png');
  background-position: 50%;
  background-size: cover;
  width: 30px;
  height: 30px;
  margin-top: 10px;
}

.button-59 {
  background-color: #3898ec00;
  background-image: url('../images/TELCO-5.png');
  background-position: 50%;
  background-size: cover;
  width: 30px;
  height: 30px;
  margin-top: 10px;
}

.text-block-577 {
  font-family: Montserrat, sans-serif;
  font-size: 13px;
}

.text-block-578, .text-block-579 {
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.text-block-580, .text-block-581 {
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.text-block-582, .text-block-583, .text-block-584 {
  font-family: Montserrat, sans-serif;
}

.section-77 {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: stretch;
  padding: 10px 40px 0;
  display: grid;
}

.div-block-325 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-326 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-image: url('../images/layout-18.png');
  background-position: 0 0;
  background-size: cover;
  border-radius: 14px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  place-items: stretch stretch;
  padding: 40px;
  display: grid;
}

.div-block-327 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-image: url('../images/layout-21.png');
  background-position: 50% 100%;
  background-size: auto;
  border-radius: 14px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding: 30px;
  display: grid;
}

.div-block-328 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-image: url('../images/layout-22.png');
  background-position: 100%;
  background-repeat: repeat;
  background-size: 960px;
  border-radius: 14px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding: 30px;
  display: grid;
}

.text-block-585 {
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-weight: 400;
}

.text-block-586 {
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 45px;
}

.text-block-587 {
  color: var(--white);
  text-align: justify;
  margin-top: 0;
  font-family: Montserrat, sans-serif;
}

.div-block-329 {
  justify-content: flex-end;
  margin-top: 0;
  display: block;
}

.button-60 {
  border: 1px solid var(--white);
  background-color: var(--light-dark-bue);
  color: var(--dark-blue);
  border-radius: 10px;
  margin-top: 20px;
  padding-left: 40px;
  padding-right: 40px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

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

.text-block-588 {
  color: var(--white);
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

.text-block-589 {
  color: var(--white);
  text-align: justify;
  margin-top: 10px;
  font-family: Montserrat, sans-serif;
}

.div-block-330 {
  margin-top: 60px;
}

.text-block-590 {
  color: var(--white);
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

.text-block-591 {
  color: var(--white);
  text-align: justify;
  margin-top: 10px;
  font-family: Montserrat, sans-serif;
}

.div-block-331 {
  margin-top: 60px;
}

.div-block-332 {
  margin-top: 70px;
}

.section-78 {
  grid-column-gap: 33px;
  grid-row-gap: 33px;
  background-color: var(--trans);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 10px;
  margin-bottom: 0;
  padding: 20px 40px 60px;
  display: grid;
}

.div-block-333 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-image: url('../images/');
  background-position: 50%;
  background-size: cover;
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  height: 530px;
  padding-top: 80px;
  display: grid;
}

.div-block-334 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-335, .div-block-336 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--medium-sea-green);
  background-image: none;
  background-size: auto;
  border-radius: 14px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding: 30px;
  display: grid;
}

.div-block-337 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

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

.div-block-339 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-image: url('../images/layout-20.png');
  background-position: 0 0;
  background-size: auto;
  border-left: 1px solid #d1d2d357;
  border-radius: 14px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  height: 350px;
  padding: 40px;
  display: flex;
}

.div-block-340 {
  background-image: url('../images/layout-21.png');
  background-position: 0 0;
  background-size: auto;
  border-left: 1px solid #d1d2d357;
  border-radius: 14px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  height: auto;
  padding: 40px;
  display: flex;
}

.text-block-592 {
  color: var(--bg-grey);
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

.text-block-593 {
  color: var(--white);
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

.text-block-594, .text-block-595 {
  color: var(--white);
  text-align: justify;
  margin-top: 10px;
  font-family: Montserrat, sans-serif;
}

.div-block-341 {
  background-image: url('../images/Product-Logo-Transparent-Version-1.png');
  background-position: 0 0;
  background-size: cover;
  height: 600px;
}

.div-block-342 {
  background-image: url('../images/Product-Logo-Transparent-Version-2.png');
  background-position: 0 0;
  background-size: cover;
  height: 600px;
}

.div-block-343 {
  background-image: url('../images/layout-22.png');
  background-position: 50%;
  background-size: auto;
  border-radius: 14px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  height: 300px;
  padding: 40px;
  display: flex;
}

.div-block-344 {
  height: 180px;
  color: var(--white);
  background-image: url('../images/layout-21.png');
  background-position: 0 0;
  background-size: cover;
  border-radius: 14px;
  margin-top: 20px;
  padding: 40px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

.section-79 {
  padding: 40px 40px 60px;
}

.div-block-345 {
  background-image: url('../images/layout-19.png');
  background-position: 50%;
  background-size: cover;
  border-radius: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 400px;
  padding: 40px 40px 20px;
  display: flex;
}

.text-block-596 {
  color: var(--white);
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 45px;
}

.text-block-597 {
  width: 500px;
  color: var(--white);
  text-align: center;
  margin-top: 20px;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
}

.div-block-346 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  margin-top: 30px;
  display: flex;
}

.button-61 {
  background-color: var(--white);
  width: 150px;
  color: var(--dark-blue);
  text-align: center;
  border-radius: 10px;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  box-shadow: 0 2px 5px #0003;
}

.button-61:hover {
  box-shadow: 0 2px 5px 0 var(--green-pimato);
}

.button-62 {
  background-color: var(--green-pimato);
  width: 150px;
  color: var(--black);
  text-align: center;
  border-radius: 10px;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
}

.button-62:hover {
  box-shadow: 0 2px 5px 0 var(--white);
}

@media screen and (min-width: 1280px) {
  .div-block-39 {
    background-image: linear-gradient(#ededed57, #ededed57);
    padding-left: 60px;
  }

  .text-block-157 {
    letter-spacing: .5px;
  }

  .heading-78 {
    color: #363942;
    letter-spacing: 1px;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 45px;
    line-height: 50px;
  }

  .text-block-158 {
    letter-spacing: .5px;
  }

  .navbar-main-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .heading-style-h6 {
    text-align: center;
  }

  .img-3, .img {
    margin-bottom: 0;
  }

  .text-block-286 {
    width: 400px;
  }

  .div-block-95 {
    width: auto;
  }

  .section-43 {
    padding-left: 0;
    padding-right: 0;
  }

  .container-481 {
    width: auto;
    margin: 0;
  }

  .gallery21_image {
    box-sizing: border-box;
  }

  .div-block-275, .text-block-543, .text-block-544, .text-block-545, .text-block-546, .text-block-547, .text-block-548 {
    background-color: var(--trans);
  }

  .container-913 {
    margin-top: -7px;
    margin-left: -18px;
    margin-right: 0;
  }

  .slide-6, .slide-7, .slide-8 {
    border-radius: 20px;
  }

  .container-914 {
    margin: 0 0 15px -24px;
  }

  .slide-38 {
    border-radius: 20px;
  }

  .heading-68, .text-block-126 {
    margin-top: 2px;
  }

  .text-block-123 {
    margin-top: 2px;
    padding-top: 0;
  }

  .text-block-129 {
    margin-top: 2px;
  }

  .container-915 {
    padding-left: 10px;
  }

  .div-block-306 {
    width: auto;
    height: auto;
  }
}

@media screen and (min-width: 1440px) {
  .form-input {
    width: 1000px;
    padding-right: 0;
  }

  .hero-section-2 {
    height: 100vh;
  }

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

  .div-block-39 {
    background-image: linear-gradient(#ededed57, #ededed57);
    display: flex;
  }

  .text-block-157 {
    color: #000;
    letter-spacing: .5px;
  }

  .heading-78 {
    color: #363942;
    letter-spacing: .5px;
    margin: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 50px;
  }

  .text-block-158 {
    color: #000;
    letter-spacing: .5px;
  }

  .background-video-19 {
    width: 100%;
    height: 100%;
  }

  .navbar_link._1 {
    font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  }

  .navbar-main-container {
    max-width: none;
    padding-left: 30px;
    padding-right: 20px;
  }

  .div-block-41 {
    padding-left: 0;
    padding-right: 0;
  }

  .section-3 {
    padding-left: 220px;
    padding-right: 220px;
  }

  .section-4 {
    margin-left: 40px;
    margin-right: 40px;
    padding-left: 100px;
    padding-right: 100px;
  }

  .div-block-57 {
    padding-left: 100px;
    padding-right: 100px;
  }

  .section-5 {
    padding-left: 140px;
    padding-right: 140px;
  }

  .body-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .footer-wrapper {
    padding-left: 20px;
  }

  .img-3, .img {
    margin-bottom: 0;
  }

  .text-block-286 {
    width: 500px;
    margin-top: 0;
  }

  .div-block-95 {
    width: auto;
  }

  .section-43 {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .container-481 {
    width: auto;
    margin: 0;
  }

  .section-44 {
    padding-left: 220px;
    padding-right: 220px;
  }

  .div-block-124 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    place-items: center stretch;
  }

  .image-21 {
    height: 1000px;
  }

  .text-block-430 {
    color: var(--white);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-family: Montserrat, sans-serif;
    font-size: 35px;
    font-weight: 300;
    line-height: 40px;
    text-decoration: none;
    position: absolute;
  }

  .section-46 {
    background-position: 100%;
    height: 100vh;
    padding-left: 100px;
    padding-right: 100px;
  }

  .div-block-153 {
    padding-bottom: 80px;
    padding-left: 140px;
    padding-right: 140px;
  }

  .text-block-435 {
    width: 700px;
  }

  .text-block-436 {
    width: 600px;
  }

  .div-block-154 {
    padding-bottom: 60px;
    padding-left: 140px;
    padding-right: 140px;
  }

  .text-block-438, .text-block-439, .text-block-440 {
    width: auto;
  }

  .text-block-441 {
    margin-left: -80px;
  }

  .section-47 {
    padding: 60px 220px 100px;
  }

  .section-49 {
    padding-left: 0;
    padding-right: 0;
  }

  .text-block-447 {
    padding-left: 120px;
    font-size: 27px;
  }

  .text-block-448 {
    width: 900px;
    padding-left: 120px;
    font-size: 50px;
    line-height: 55px;
  }

  .text-block-449 {
    width: 800px;
    padding-left: 120px;
    font-size: 16px;
  }

  .section-50, .section-51 {
    padding-left: 220px;
    padding-right: 220px;
  }

  .image-42 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .image-43 {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 20px;
  }

  .image-44 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .text-block-460, .text-block-474 {
    width: 900px;
  }

  .text-block-475, .text-block-476 {
    width: 1000px;
  }

  .text-block-478 {
    width: 900px;
  }

  .text-block-479 {
    width: 1000px;
  }

  .text-block-489 {
    width: 900px;
  }

  .text-block-490, .text-block-491 {
    padding-left: 120px;
  }

  .text-block-492 {
    width: 800px;
    padding-left: 120px;
  }

  .section-61 {
    padding-left: 140px;
    padding-right: 140px;
  }

  .text-block-493 {
    font-size: 35px;
  }

  .text-block-494 {
    margin-top: 10px;
    font-size: 16px;
  }

  .div-block-228 {
    place-items: center;
  }

  .text-span-119 {
    font-size: 18px;
  }

  .div-block-230 {
    width: 500px;
    box-shadow: none;
    border-color: #f1f1f1;
  }

  .text-block-495 {
    width: 400px;
  }

  .div-block-231 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-64, .image-65 {
    width: 70px;
  }

  .div-block-236 {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .text-block-496 {
    width: 300px;
  }

  .div-block-237 {
    border-top: .5px solid var(--pi-blue);
  }

  .text-span-120 {
    font-size: 20px;
    line-height: 25px;
  }

  .text-span-121 {
    font-size: 20px;
  }

  .text-span-122 {
    font-size: 20px;
    line-height: 25px;
  }

  .div-block-245 {
    align-items: center;
  }

  .section-67 {
    padding-left: 220px;
    padding-right: 220px;
  }

  .div-block-256 {
    padding-left: 40px;
  }

  .section-68 {
    padding-left: 240px;
    padding-right: 240px;
  }

  .div-block-287 {
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-288 {
    place-items: center;
  }

  .navbar_link-2._1 {
    font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  }

  .faq6_content {
    justify-content: space-between;
  }

  .container-913 {
    box-shadow: 0 2px 5px #0003;
  }

  .container-211 {
    margin-top: 3px;
    box-shadow: 0 2px 5px #0003;
  }

  .bold-text-122 {
    font-size: 16px;
  }

  .container-217 {
    border-left: 1px solid #d1d1d1;
    flex-flow: column;
    margin-right: 0;
  }

  .our-team {
    padding: 60px 120px;
  }

  .slide-6 {
    background-color: #fafafa;
    height: 430px;
    margin-right: 10px;
    box-shadow: 2px 2px 4px 1px #0003;
  }

  .text-block-91 {
    color: #000;
    font-weight: 700;
    line-height: 30px;
  }

  .text-block-127 {
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
  }

  .container-213 {
    background-color: #2d2f3700;
    border-left: 1px solid #d1d1d1;
    margin-left: 0;
    margin-right: 0;
  }

  .slide-7 {
    background-color: #fafafa;
    height: 430px;
    margin-left: 5px;
    box-shadow: 2px 2px 4px 1px #0003;
  }

  .mask-5 {
    flex: 0 auto;
    width: 1020px;
    padding: 0;
    overflow: hidden;
  }

  .slide-8 {
    color: #fff;
    background-color: #fafafa;
    height: 430px;
    box-shadow: 2px 2px 4px 1px #0003;
  }

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

  .container-224 {
    box-shadow: 0 2px 5px #0003;
  }

  .container-220 {
    margin-top: -10px;
    box-shadow: 0 2px 5px #0003;
  }

  .container-216 {
    color: #000;
    background-color: #2d2f3700;
    margin: 0 0 0 10px;
  }

  .icon-5 {
    color: #000;
  }

  .heading-53 {
    color: #363942;
    margin-bottom: 0;
    padding-bottom: 40px;
  }

  .text-block-120 {
    color: #000;
    font-size: 16px;
  }

  .grid-39 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .icon-6 {
    color: #000;
  }

  .container-212 {
    background-color: #2d2f3700;
    margin: 0 0 0 10px;
  }

  .container-912 {
    height: 420px;
  }

  .text-block-569 {
    margin-top: 10px;
    margin-left: -10px;
    font-size: 14px;
    font-weight: 500;
  }

  .grid-38 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .text-span-90 {
    text-align: left;
    font-size: 20px;
    font-weight: 700;
  }

  .text-block-570 {
    text-align: center;
    letter-spacing: 0;
    margin-left: -10px;
    padding-top: 25px;
    padding-left: 25px;
    font-size: 16px;
    font-weight: 700;
    line-height: 25px;
  }

  .slide-37 {
    height: 430px;
  }

  .slider-4 {
    width: 100%;
    max-width: 1440px;
    margin: 0;
    padding: 25px 0 40px;
  }

  .slide-38 {
    background-color: #fafafa;
    border: 1px solid #b8b8b8;
    height: 430px;
    box-shadow: 2px 2px 4px 1px #0003;
  }

  .container-223 {
    border-left: 1px solid #d1d1d1;
    margin: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block-125 {
    color: #000;
    font-size: 16px;
  }

  .container-221 {
    background-color: #2d2f3700;
  }

  .grid-68 {
    grid-template-columns: 1fr 1fr;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .slide-nav-3 {
    color: #363942;
    height: 10px;
    padding-top: 0;
  }

  .heading-68 {
    color: #000;
    margin: 0;
    padding-bottom: 21px;
    font-weight: 500;
  }

  .container-215 {
    box-shadow: 0 2px 5px #0003;
  }

  .grid-37 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .text-block-126 {
    color: #000;
    margin-top: -12px;
    font-weight: 500;
  }

  .text-block-571 {
    font-size: 14px;
    font-weight: 500;
  }

  .text-block-128 {
    color: #000;
    font-size: 16px;
  }

  .text-block-123 {
    color: #000;
    margin-left: 0;
    padding-top: 0;
    font-weight: 500;
  }

  .text-block-124 {
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
  }

  .text-block-92 {
    color: #050406;
  }

  .container-225 {
    background-color: #2d2f3700;
  }

  .text-block-572 {
    padding-left: 21px;
  }

  .container-210 {
    height: 420px;
    margin: 0;
    padding: 20px 10px 10px 5px;
  }

  .container-222 {
    -webkit-text-stroke-color: white;
    justify-content: center;
    height: 420px;
    margin: 0;
    padding: 20px 10px 10px 5px;
  }

  .bold-text-25 {
    color: #363942;
    font-weight: 600;
  }

  .container-214 {
    color: #ededed;
    height: 420px;
    margin: 0;
    padding: 20px 10px 10px 5px;
  }

  .text-block-129 {
    color: #000;
    font-weight: 500;
  }

  .text-block-122 {
    color: #000;
    font-size: 16px;
  }

  .container-915 {
    margin-top: 220px;
  }

  .container-219 {
    border-left: 1px solid #d1d1d1;
    margin: 0;
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .container-218 {
    color: #fafafa;
    -webkit-text-stroke-color: white;
    justify-content: center;
    height: 420px;
    margin: 0;
    padding: 20px 10px 10px 5px;
  }

  .text-block-121 {
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
  }

  .section-76 {
    padding-left: 100px;
    padding-right: 100px;
  }

  .div-block-305 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    place-items: stretch center;
    display: flex;
  }

  .div-block-306 {
    width: auto;
    height: auto;
  }

  .text-block-575 {
    width: 260px;
  }

  .text-block-576 {
    width: 800px;
  }

  .div-block-312 {
    margin-top: 80px;
    padding-left: 140px;
    padding-right: 140px;
  }

  .div-block-314, .div-block-318, .div-block-319, .div-block-320 {
    height: 350px;
  }

  .text-block-577 {
    font-size: 14px;
  }

  .section-77 {
    padding-left: 100px;
    padding-right: 100px;
  }

  .text-block-589, .text-block-591 {
    width: auto;
  }

  .section-78 {
    padding-left: 100px;
    padding-right: 100px;
  }

  .div-block-333 {
    height: 800px;
  }

  .section-79 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-347, .div-block-348 {
    width: auto;
  }
}

@media screen and (max-width: 991px) {
  .navigation {
    z-index: 999;
    padding-right: 10px;
  }

  .header {
    padding-left: 60px;
    padding-right: 60px;
  }

  .bullet {
    display: none;
  }

  .navigation-button {
    width: 75%;
    margin: 20px 30px;
  }

  .container.cc-contact {
    flex-wrap: wrap;
  }

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

  .h2-container, .h2-container.cc-center, .h2-container.cc-center-long {
    width: 80%;
  }

  .feature-item-container {
    height: auto;
  }

  .collection-list {
    align-items: stretch;
    margin-left: -5px;
    margin-right: -5px;
  }

  .slider-section {
    margin-top: 240px;
  }

  .slider {
    height: 480px;
    margin-top: -240px;
  }

  ._2-row-image {
    max-width: 50%;
    margin-right: 30px;
  }

  ._2-row-image.cc-row-spacing {
    margin-right: 50px;
  }

  ._2-row-image.cc-row-reverse, ._2-row-text {
    margin-right: 0;
  }

  ._2-row-text.cc-bottom {
    margin-right: 50px;
  }

  ._2-row-text.cc-bottom.cc-reverse {
    margin-left: 50px;
  }

  ._2-row-text.cc-row-reverse {
    margin-right: 50px;
  }

  .collection-item {
    width: 33.3333%;
    padding-left: 5px;
    padding-right: 5px;
  }

  .collection-item.cc-feature-row {
    width: 50%;
    display: flex;
  }

  .header-inner-content {
    width: 80%;
  }

  .premium-image-container {
    margin-top: 0;
  }

  .container-quote {
    width: 100%;
  }

  .container-pricing {
    flex-wrap: wrap;
    align-items: flex-start;
    margin-top: -10px;
    margin-bottom: -10px;
  }

  .pricing-block {
    align-content: flex-start;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .service-pillar-facts {
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: stretch;
    margin: -10px;
  }

  .fact-block {
    flex-wrap: wrap;
    align-items: flex-start;
    display: flex;
  }

  .container-facts-inner {
    width: 50%;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .team {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .collection-list-2 {
    flex-wrap: wrap;
    display: flex;
  }

  .team-member {
    width: 33.3333%;
  }

  .blog-posts-item {
    width: 50%;
  }

  .header-color {
    height: 85%;
  }

  .contact-intro {
    flex-flow: wrap;
    padding-bottom: 110px;
  }

  .contact-info {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
  }

  .form-input {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 0;
    padding-right: 0;
  }

  .nav-menu {
    background-color: var(--white);
    padding-top: 30px;
    padding-bottom: 30px;
    box-shadow: 0 5px 20px #0003;
  }

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

  .icon-2 {
    color: #000;
    font-size: 32px;
  }

  .menu-button:active, .menu-button.w--open {
    background-color: var(--white);
  }

  .ex-service-pillars {
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: stretch;
    margin: -10px;
  }

  .service-pillars-inner {
    width: 50%;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .h2-partnership-container, .h2-partnership-container.cc-center {
    width: 80%;
  }

  .contact-intro-example, .connect-intro {
    flex-flow: wrap;
    padding-bottom: 110px;
  }

  .connect-info {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
  }

  .h2-container-connect, .h2-container-connect.cc-center {
    width: 80%;
  }

  .management-team-facts {
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: stretch;
    margin: -10px;
  }

  .container-mgmt-inner {
    width: 50%;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .header-inner-button {
    width: 80%;
  }

  .containersolutions-inner {
    width: 50%;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .solution-facts {
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: stretch;
    margin: -10px;
  }

  .solutions-block {
    flex-wrap: wrap;
    align-items: flex-start;
    display: flex;
  }

  .about-container.cc-contact {
    flex-wrap: wrap;
  }

  .success-story {
    flex-wrap: wrap;
    align-items: flex-start;
    margin-top: -10px;
    margin-bottom: -10px;
  }

  .success-block-final {
    align-content: flex-start;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .cloudflex-story {
    flex-wrap: wrap;
    align-items: flex-start;
    margin-top: -10px;
    margin-bottom: -10px;
  }

  .cloudflex-block {
    align-content: flex-start;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .h2-container-txt, .h2-container-txt.cc-center, .h2-container-txt.cc-center-long, .h2-container-stretch, .h2-container-stretch.cc-center, .h2-container-stretch.cc-center-long {
    width: 80%;
  }

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

  .nav-menu-wrapper {
    background-color: #0000;
  }

  .nav-menu-two {
    background-color: #fff;
    border-radius: 50px;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
    padding: 20px;
    display: flex;
    box-shadow: 0 8px 50px #0000000d;
  }

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

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

  .menu-button-2 {
    padding: 12px;
  }

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

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

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

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

  .nav-menu-two-2 {
    background-color: #fff;
    border-radius: 50px;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
    padding: 20px;
    display: flex;
    box-shadow: 0 8px 50px #0000000d;
  }

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

  .navbar-wrapper-three {
    justify-content: space-between;
  }

  .navbar-brand-three {
    position: relative;
  }

  .nav-menu-wrapper-three {
    background-color: #0000;
    top: 70px;
  }

  .nav-menu-three {
    background-color: #fff;
    border-radius: 50px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding: 20px;
    display: flex;
    box-shadow: 0 8px 50px #0000000d;
  }

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

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

  .menu-button-3 {
    padding: 12px;
  }

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

  .nav-menu-wrapper-2 {
    background-color: #0000;
  }

  .nav-menu-two-3 {
    background-color: #fff;
    border-radius: 50px;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
    padding: 20px;
    display: flex;
    box-shadow: 0 8px 50px #0000000d;
  }

  .menu-icon1 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-right: -.5rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .navbar1_menu-button.w--open {
    background-color: var(--\<unknown\|relume-variable-transparent\>);
  }

  .navbar1_menu-buttons {
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    align-items: stretch;
    margin-top: 1.5rem;
    margin-left: 0;
  }

  .dropdown-chevron {
    inset: auto 0% auto auto;
  }

  .navbar1_dropdown-link {
    width: auto;
    padding: .75rem 0 .75rem 5%;
  }

  .navbar1_menu-dropdown {
    width: 100%;
    font-size: 1.125rem;
  }

  .menu-icon1_line-top {
    background-color: var(--\<unknown\|relume-variable-color-scheme-1-text\>);
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar1_dropdown-toggle {
    align-items: center;
    padding-top: .75rem;
    padding-bottom: .75rem;
    padding-left: 0;
    display: flex;
  }

  .navbar1_link {
    width: auto;
    padding: .75rem 0;
    font-size: 1.125rem;
  }

  .menu-icon1_line-bottom {
    background-color: var(--\<unknown\|relume-variable-color-scheme-1-text\>);
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar1_dropdown-list {
    position: static;
    overflow: hidden;
  }

  .navbar1_dropdown-list.w--open {
    border-style: none;
    padding: 0;
  }

  .menu-icon1_line-middle {
    background-color: var(--\<unknown\|relume-variable-color-scheme-1-text\>);
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .navbar1_menu {
    border-bottom: 1px solid var(--\<unknown\|relume-variable-color-scheme-1-border\>);
    background-color: var(--\<unknown\|relume-variable-color-scheme-1-background\>);
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    padding: 1rem 5% 2rem;
    position: absolute;
    overflow: auto;
  }

  .navbar1_menu.is-page-height-tablet {
    height: 100dvh;
    padding-bottom: 6.5rem;
    transition: height .5s;
  }

  .menu-icon1_line-middle-inner {
    width: 4px;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .dropdown-link-39, .dropdown-link-43, .dropdown-link-40 {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .dropdown-toggle-13 {
    width: 115px;
  }

  .menu-icon_line-top, .menu-icon_line-bottom {
    background-color: var(--bg-grey);
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar-glass-tintt {
    display: block;
  }

  .menu-icon_line-middle {
    background-color: var(--bg-grey);
    color: #000;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .menu-icon-2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-right: -.5rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .navbar-glass-shine, .navbar-5 {
    display: block;
  }

  .navbar_link {
    border-bottom: 1px solid var(--dark-blue);
    width: auto;
    color: var(--dark-blue);
    text-align: center;
    background-color: #e0e2e6;
    padding: .75rem 0;
    font-size: 14px;
  }

  .navbar_link:hover {
    color: var(--dark-grey);
  }

  .navbar_link._1 {
    background-color: #e0e1e4;
  }

  .dropdown-link-38 {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .navbar_menu {
    -webkit-text-fill-color: inherit;
    background-color: #000;
    background-clip: border-box;
    border-bottom: 1px solid #fff;
    padding: 1rem 5% 2rem;
    position: absolute;
    overflow: auto;
  }

  .navbar_menu.is-page-height-tablet {
    background-color: #e0e2e6;
    border-radius: 20px;
    height: auto;
    margin-top: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    box-shadow: 0 0 8px #ffffffcf;
  }

  .dropdown-toggle-14 {
    width: 93px;
  }

  .navbar_menu-buttons {
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    align-items: stretch;
    margin-top: 1.5rem;
    margin-left: 0;
    display: none;
  }

  .navbar-main-container {
    display: block;
  }

  .navbar_menu-button.w--open {
    background-color: #0000;
  }

  .menu-icon_line-middle-inner {
    width: 4px;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .text-block-384 {
    font-size: 40px;
    line-height: 50px;
  }

  .text-block-385 {
    width: auto;
    font-size: 16px;
  }

  .text-block-386 {
    font-size: 16px;
  }

  .div-block-42 {
    filter: blur(5px);
    background-color: #ffffffb8;
    position: absolute;
    inset: 0%;
  }

  .bold-text {
    font-size: 30px;
  }

  .text-span-114 {
    font-size: 14px;
    line-height: 20px;
  }

  .text-block-388 {
    font-size: 30px;
  }

  .layout242_list {
    grid-column-gap: 2rem;
  }

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

  .padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

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

  .heading-style-h3 {
    font-size: 2.25rem;
  }

  .text-block-389 {
    font-size: 16px;
  }

  .div-block-45 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    padding-top: 20px;
    display: flex;
  }

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

  .text-block-401 {
    font-size: 30px;
  }

  .div-block-52, .div-block-53, .div-block-54 {
    height: 450px;
  }

  .text-block-402, .text-block-403, .text-block-404 {
    text-align: left;
  }

  .text-block-407 {
    margin-top: 15px;
  }

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

  .logo-image {
    width: 130px;
    height: 80px;
  }

  .text-block-412 {
    font-size: 30px;
  }

  .heading-style-h1 {
    font-size: 3.25rem;
  }

  .text-block-413 {
    text-align: center;
    width: 600px;
    font-size: 30px;
  }

  .text-block-414 {
    text-align: center;
    font-size: 14px;
  }

  .div-block-61 {
    flex-flow: column;
    align-items: center;
    display: flex;
  }

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

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

  .footer3_top-wrapper {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

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

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

  .footer-wrapper {
    padding-right: 10px;
  }

  .footer-content {
    grid-column-gap: 60px;
  }

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

  .footer-content-2 {
    grid-column-gap: 60px;
  }

  .section-43 {
    background-position: 50%, 0 0;
    background-size: auto, auto;
    width: 100%;
  }

  .div-block-123 {
    flex-flow: column;
    width: 100%;
    display: flex;
  }

  .container-481 {
    width: 100%;
  }

  .text-block-416 {
    font-size: 16px;
  }

  .text-block-417 {
    font-size: 30px;
  }

  .text-block-418 {
    font-size: 16px;
  }

  .heading-style-h2 {
    font-size: 2.75rem;
  }

  .padding-section-large-2 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .section-46 {
    background-position: 0%;
    background-size: cover;
  }

  .div-block-153 {
    align-items: center;
  }

  .text-block-435 {
    text-align: center;
    line-height: 25px;
  }

  .text-block-436 {
    text-align: center;
    font-size: 50px;
  }

  .text-block-437 {
    font-size: 15px;
  }

  .div-block-154 {
    align-items: center;
  }

  .div-block-155 {
    place-items: center;
  }

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

  .section-47 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .div-block-159 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

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

  .hero-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

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

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

  .div-block-176 {
    align-items: center;
  }

  .text-block-447 {
    padding-left: 0;
  }

  .text-block-448, .text-block-449 {
    text-align: center;
    padding-left: 0;
  }

  .text-block-450 {
    font-size: 18px;
  }

  .div-block-178 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .image-37, .div-block-179, .div-block-180, .div-block-181, .div-block-182 {
    height: auto;
  }

  .div-block-184 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .text-block-454 {
    font-size: 15px;
  }

  .text-block-455 {
    font-size: 35px;
  }

  .div-block-191 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

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

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

  .gallery-sticky {
    position: relative;
    top: 0;
  }

  .gallery-slider-left {
    left: -20px;
  }

  .gallery-slider-right {
    right: -20px;
  }

  .section-52 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .div-block-195 {
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
  }

  .text-block-460 {
    width: 600px;
  }

  .section-53, .section-54, .section-55, .section-56, .section-57, .div-block-201 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .text-block-474, .text-block-475, .text-block-476, .text-block-477, .text-block-478, .text-block-479 {
    width: 600px;
  }

  .section-59 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .text-block-489 {
    width: 600px;
  }

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

  .gallery-wrapper-2 {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-sticky-2 {
    position: relative;
    top: 0;
  }

  .section-60 {
    background-position: 0 0, 0%;
  }

  .div-block-227 {
    align-items: center;
  }

  .text-block-490 {
    padding-left: 0;
  }

  .text-block-491 {
    text-align: center;
    width: 500px;
    padding-left: 0;
  }

  .text-block-492 {
    text-align: center;
    padding-left: 0;
  }

  .section-61 {
    padding-top: 100px;
    padding-left: 100px;
    padding-right: 100px;
  }

  .div-block-228 {
    grid-template-columns: 1.75fr;
  }

  .div-block-229 {
    padding-right: 0;
  }

  .div-block-230 {
    width: 500px;
    margin-top: 40px;
  }

  .text-block-495 {
    font-size: 16px;
  }

  .image-64, .image-65 {
    height: 70px;
  }

  .text-block-496 {
    width: 300px;
  }

  .text-block-500 {
    font-size: 14px;
  }

  .button-47, .button-48, .button-49, .button-50 {
    width: 30px;
    height: 30px;
  }

  .div-block-239 {
    align-items: center;
  }

  .text-block-501 {
    padding-left: 0;
    font-size: 20px;
  }

  .text-block-502, .text-block-503 {
    text-align: center;
    width: 500px;
    padding-left: 0;
  }

  .text-block-504 {
    font-size: 16px;
  }

  .text-block-505 {
    font-size: 20px;
  }

  .div-block-240 {
    flex-flow: column;
    align-items: stretch;
  }

  .div-block-242, .div-block-243, .div-block-244 {
    width: auto;
    height: auto;
  }

  .text-block-506, .text-block-507, .text-block-508 {
    text-align: center;
  }

  .text-block-509, .text-block-510, .text-block-511 {
    font-size: 16px;
  }

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

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

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

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

  .div-block-246, .div-block-247, .div-block-248 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    align-items: center;
  }

  .text-block-513 {
    font-size: 16px;
  }

  .section-65 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .div-block-250 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    place-items: center;
  }

  .div-block-251 {
    align-items: center;
    padding-left: 0;
    padding-right: 0;
  }

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

  .div-block-255 {
    width: 550px;
    height: 400px;
  }

  .text-block-524 {
    font-size: 20px;
  }

  .div-block-256 {
    grid-template-rows: auto auto;
    grid-template-columns: 1.75fr;
    align-items: center;
    padding-left: 60px;
    padding-right: 60px;
  }

  .text-block-525, .text-block-526 {
    text-align: center;
  }

  .text-block-527 {
    text-align: center;
    margin-top: 10px;
  }

  .div-block-260 {
    grid-template-rows: auto auto;
    grid-template-columns: 1.75fr;
    padding-left: 60px;
    padding-right: 60px;
  }

  .div-block-261 {
    grid-template-rows: auto auto;
    grid-template-columns: 1.75fr;
  }

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

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

  .text-block-530 {
    margin-top: 10px;
  }

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

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

  .text-block-533 {
    text-align: center;
    margin-top: 10px;
  }

  .section-68 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .text-block-534 {
    font-size: 18px;
  }

  .text-block-535 {
    font-size: 20px;
  }

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

  .image-81 {
    width: 200px;
    margin-left: 0;
  }

  .text-block-550 {
    font-size: 20px;
  }

  .div-block-288 {
    grid-template-rows: auto auto auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .menu-icon_line-middle-inner-2 {
    width: 4px;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon_line-middle-2 {
    color: #000;
    background-color: #fafafa;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .navbar_link-2 {
    color: #000a64;
    text-align: center;
    background-color: #e0e2e6;
    border-bottom: 1px solid #000a64;
    width: auto;
    padding: .75rem 0;
    font-size: 14px;
  }

  .navbar_link-2:hover {
    color: #b3b3b3;
  }

  .navbar_link-2._1 {
    background-color: #e0e1e4;
  }

  .menu-icon_line-top-2 {
    background-color: #fafafa;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar-glass-tintt-2 {
    display: block;
  }

  .menu-icon_line-bottom-2 {
    background-color: #fafafa;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .text-span-139 {
    font-size: 30px;
  }

  .div-block-289 {
    flex-flow: column;
    align-items: center;
    display: flex;
  }

  .div-block-290 {
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-301 {
    justify-content: center;
    align-items: center;
  }

  .text-block-563 {
    padding-left: 0;
    font-size: 20px;
  }

  .text-block-564 {
    text-align: center;
    width: 550px;
    padding-left: 0;
  }

  .text-block-565 {
    padding-top: 20px;
    padding-left: 0;
  }

  .section-71 {
    padding-left: 60px;
    padding-right: 60px;
  }

  .team5_list {
    grid-column-gap: 2rem;
  }

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

  .heading-style-h4 {
    font-size: 1.75rem;
  }

  .faq6_content {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .section-74 {
    padding-top: 10px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .container-913 {
    background-size: cover;
    width: 150px;
    height: 150px;
    margin: 0;
  }

  .container-211 {
    width: 150px;
    height: 150px;
    margin-top: 4px;
    margin-left: 10px;
  }

  .bold-text-122 {
    width: 40px;
    font-size: 12px;
  }

  .container-217 {
    width: 170px;
  }

  .our-team {
    padding-left: 0;
    padding-right: 0;
  }

  .slide-6 {
    width: 50%;
  }

  .text-block-91 {
    padding-left: 20px;
  }

  .container-213 {
    width: 180px;
  }

  .slide-7 {
    width: 50%;
  }

  .mask-5 {
    width: 200%;
  }

  .slide-8 {
    width: 50%;
  }

  .container-224 {
    width: 150px;
    height: 150px;
    margin-top: -14px;
    margin-right: 13px;
  }

  .container-914 {
    max-width: none;
    margin-top: -14px;
    margin-left: -7px;
  }

  .container-220 {
    width: 150px;
    height: 150px;
    margin-top: -8px;
    margin-left: 10px;
  }

  .container-216 {
    width: 150px;
  }

  .icon-5 {
    margin-right: 0;
  }

  .heading-53 {
    padding-left: 20px;
  }

  .icon-6 {
    margin-left: 0;
  }

  .container-212 {
    width: 150px;
  }

  .text-block-569 {
    margin-top: -1px;
    margin-left: -14px;
    padding-left: 0;
    font-size: 11px;
    font-weight: 400;
  }

  .text-block-570 {
    font-size: 14px;
  }

  .slide-37 {
    width: 50%;
  }

  .slider-4 {
    width: 100%;
  }

  .slide-38 {
    width: 50%;
  }

  .container-223 {
    width: 170px;
    margin-top: -15px;
  }

  .container-221 {
    width: 150px;
    margin-left: 11px;
  }

  .heading-68 {
    width: 170px;
    margin-top: 6px;
    font-size: 12px;
    line-height: 15px;
  }

  .leadership {
    width: 100%;
  }

  .container-215 {
    width: 150px;
    height: 150px;
    margin-left: 10px;
  }

  .grid-37 {
    margin-top: -51px;
  }

  .text-block-571 {
    margin-left: -15px;
    font-size: 11px;
  }

  .text-block-123 {
    width: 170px;
    padding-top: 0;
    font-size: 12px;
    line-height: 15px;
  }

  .text-block-92 {
    padding-left: 20px;
  }

  .container-225 {
    width: 150px;
  }

  .text-block-572 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block-129 {
    margin-top: 0;
    font-size: 12px;
    line-height: 15px;
  }

  .container-915 {
    width: 140px;
    height: 160px;
    margin-left: 9px;
  }

  .container-219 {
    width: 170px;
    margin-top: -14px;
    font-size: 12px;
    line-height: 15px;
  }

  .team8_list {
    grid-column-gap: 2rem;
  }

  .heading-style-h2-2 {
    font-size: 2.75rem;
  }

  .section-75 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .section-76 {
    padding-left: 60px;
    padding-right: 60px;
  }

  .div-block-305 {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
    place-items: center stretch;
  }

  .text-block-574.bold-text-122 {
    width: 130px;
  }

  .div-block-306 {
    width: auto;
    height: auto;
    display: block;
  }

  .text-block-575 {
    border-right-style: none;
    margin-bottom: 10px;
  }

  .div-block-312 {
    grid-template-columns: 1fr 1fr;
  }

  .div-block-314, .div-block-318, .div-block-319, .div-block-320 {
    height: 300px;
  }
}

@media screen and (max-width: 767px) {
  .header {
    height: 600px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .navigation-links {
    display: none;
  }

  .h1 {
    font-size: 48px;
    line-height: 54px;
  }

  .h1.cc-black {
    margin-bottom: 50px;
  }

  .container.cc-cta, .container.cc-footer {
    flex-wrap: wrap;
  }

  .features {
    padding-top: 60px;
  }

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

  .h2-container {
    width: 100%;
    margin-bottom: 60px;
  }

  .h2-container.cc-center, .h2-container.cc-center-long {
    width: 100%;
  }

  .feature-item-container {
    height: auto;
  }

  .collection-list {
    flex-direction: column;
    margin: -10px 0;
  }

  .slider-section {
    margin-top: 150px;
  }

  .slider {
    height: 300px;
    margin-top: -150px;
  }

  .about {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .premium {
    padding-top: 60px;
    padding-bottom: 90px;
  }

  ._2-row-image {
    max-width: 100%;
    margin-bottom: 60px;
    margin-right: 0;
    display: flex;
  }

  ._2-row-image.cc-row-spacing, ._2-row-text, ._2-row-text.cc-bottom {
    margin-right: 0;
  }

  ._2-row-text.cc-bottom.cc-reverse {
    margin-left: 0;
  }

  ._2-row-text.cc-row-reverse {
    margin-right: 0;
  }

  .row {
    flex-wrap: wrap;
    justify-content: center;
  }

  ._2-row-action-text {
    margin-top: 50px;
  }

  .cta {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .cta-column {
    justify-content: flex-start;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .footer {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .footer-column {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .footer-column.cc-footer {
    width: 100%;
  }

  .collection-item {
    width: 100%;
    margin: 10px 0;
    padding-left: 0;
    padding-right: 0;
  }

  .collection-item.cc-feature-row {
    flex: 1;
    width: 100%;
  }

  .nav-button {
    display: flex;
  }

  .nav-icon-piece, .nav-icon-piece.top {
    background-color: #fff;
  }

  .collection-list-wrapper.cc-feature-row {
    margin-bottom: -60px;
  }

  .header-inner {
    padding-top: 150px;
    padding-bottom: 60px;
  }

  .header-inner.cc-header-extra {
    padding-bottom: 180px;
  }

  .header-inner-content {
    width: 100%;
  }

  .ex-capabilties {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .premium-image-container {
    margin-bottom: 90px;
  }

  .about-intro {
    padding-top: 85px;
    padding-bottom: 45px;
  }

  .goals-container {
    flex-wrap: wrap;
    margin-top: -15px;
    margin-bottom: -25px;
  }

  .goals-container-inner {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .team-member {
    width: 50%;
  }

  .engagement {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .blog-posts-item {
    width: 100%;
  }

  .header-color {
    height: 85%;
  }

  .content {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .contact-intro {
    padding-top: 90px;
    padding-bottom: 80px;
  }

  .contact-info-row {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .contact-info-text {
    width: 100%;
  }

  .pricing, .partnerships {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .partnerships-container-inner {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .partnerships-container {
    flex-wrap: wrap;
    margin-top: -15px;
    margin-bottom: -25px;
  }

  .h2-partnership-container {
    width: 100%;
    margin-bottom: 60px;
  }

  .h2-partnership-container.cc-center {
    width: 100%;
  }

  .ex-capabilties-copy {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .contact-info-long {
    width: 100%;
  }

  .contact-info-row-long {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .contact-intro-example, .connect-intro {
    padding-top: 90px;
    padding-bottom: 80px;
  }

  .connect-info-row {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .h2-container-connect {
    width: 100%;
    margin-bottom: 60px;
  }

  .h2-container-connect.cc-center {
    width: 100%;
  }

  .partnership-intro, .success-intro, .solutions-intro, .about-us-intro, .team-intro {
    padding-top: 85px;
    padding-bottom: 45px;
  }

  .header-inner-button {
    width: 100%;
  }

  .successes {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .about-container.cc-cta, .about-container.cc-footer {
    flex-wrap: wrap;
  }

  .cta-button, .value-intro, .bi, .business-intelligence, .data-maagement, .aiml, .cloud {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .biaiml-container-inner {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .data-management, .aiml-partners, .aws-badges {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .badges-container {
    flex-wrap: wrap;
    margin-top: -15px;
    margin-bottom: -25px;
  }

  .badges-container-inner, .badges-container-inner-txt {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .business-objectives {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .cta-basic {
    padding-top: 85px;
    padding-bottom: 45px;
  }

  .info-and-image {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .info-and-image-container {
    flex-wrap: wrap;
    margin-top: -15px;
    margin-bottom: -25px;
  }

  .h2-container-txt {
    width: 100%;
    margin-bottom: 60px;
  }

  .h2-container-txt.cc-center, .h2-container-txt.cc-center-long {
    width: 100%;
  }

  .container-3x3-no-bg {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .h2-container-stretch {
    width: 100%;
    margin-bottom: 60px;
  }

  .h2-container-stretch.cc-center, .h2-container-stretch.cc-center-long {
    width: 100%;
  }

  .header-inner-home {
    padding-top: 150px;
    padding-bottom: 60px;
  }

  .header-inner-home.cc-header-extra {
    padding-bottom: 180px;
  }

  .header-inner-partnerships {
    padding-top: 150px;
    padding-bottom: 60px;
  }

  .header-inner-partnerships.cc-header-extra {
    padding-bottom: 180px;
  }

  .header-inner-success {
    padding-top: 150px;
    padding-bottom: 60px;
  }

  .header-inner-success.cc-header-extra {
    padding-bottom: 180px;
  }

  .header-inner-solutions {
    padding-top: 150px;
    padding-bottom: 60px;
  }

  .header-inner-solutions.cc-header-extra {
    padding-bottom: 180px;
  }

  .header-inner-cloudflex {
    padding-top: 150px;
    padding-bottom: 60px;
  }

  .header-inner-cloudflex.cc-header-extra {
    padding-bottom: 180px;
  }

  .header-inner-about {
    padding-top: 150px;
    padding-bottom: 60px;
  }

  .header-inner-about.cc-header-extra {
    padding-bottom: 180px;
  }

  .header-inner-contact {
    padding-top: 150px;
    padding-bottom: 60px;
  }

  .header-inner-contact.cc-header-extra {
    padding-bottom: 180px;
  }

  .modern-slavery {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .grid {
    display: block;
  }

  .container-4, .container-5 {
    margin-top: 40px;
  }

  .navbar-logo-left-container {
    max-width: 100%;
  }

  .navbar-brand {
    padding-left: 0;
  }

  .nav-menu-two {
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 30px;
  }

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

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

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

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

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

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

  .nav-divider {
    width: 200px;
    max-width: 100%;
    height: 1px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

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

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

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

  .nav-menu-two-2 {
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 30px;
  }

  .div-block-39 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block-158 {
    width: auto;
  }

  .navbar-brand-three {
    padding-left: 0;
  }

  .nav-menu-three {
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 30px;
  }

  .nav-menu-block {
    flex-direction: column;
  }

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

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

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

  .nav-dropdown-list-2.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

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

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

  .nav-link-accent-2 {
    margin-right: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

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

  .navbar-logo-left-container-2 {
    max-width: 100%;
  }

  .navbar-brand-2 {
    padding-left: 0;
  }

  .nav-menu-two-3 {
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 30px;
  }

  .nav-divider-2 {
    width: 200px;
    max-width: 100%;
    height: 1px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .navbar1_component {
    height: auto;
    min-height: 4rem;
  }

  .navbar1_logo-link {
    padding-left: 0;
  }

  .navbar1_menu.is-page-height-tablet {
    padding-bottom: 6rem;
  }

  .navbar_logo-link {
    padding-left: 0;
  }

  .dropdown-link-39, .dropdown-link-43, .dropdown-link-40 {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .dropdown-toggle-13 {
    width: 115px;
  }

  .menu-icon_line-top {
    background-color: var(--white);
  }

  .menu-icon_line-bottom, .menu-icon_line-middle {
    background-color: var(--bg-grey);
  }

  .menu-icon-2 {
    background-color: #2d2f3700;
  }

  .navbar_link {
    border-bottom: 1px solid var(--dark-blue);
    background-color: var(--trans);
    color: var(--dark-blue);
    text-align: center;
    font-size: 14px;
  }

  .navbar_link._1 {
    background-color: var(--trans);
  }

  .dropdown-link-38 {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .navbar_menu.is-page-height-tablet {
    background-color: #e0e2e6;
    border-radius: 20px;
    height: auto;
    margin-top: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    transition-property: none;
    box-shadow: 0 0 8px #ffffffcf;
  }

  .dropdown-toggle-14 {
    width: 93px;
  }

  .section-3 {
    padding: 40px;
  }

  .text-block-388 {
    font-size: 25px;
  }

  .layout242_list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

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

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

  .heading-style-h5 {
    font-size: 1.25rem;
  }

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

  .heading-style-h3 {
    font-size: 2rem;
  }

  .text-block-389 {
    font-size: 16px;
  }

  .div-block-46, .div-block-47, .div-block-48, .div-block-49, .div-block-50 {
    height: 250px;
  }

  .text-block-401 {
    font-size: 25px;
  }

  .div-block-51 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    margin-top: 10px;
  }

  .section-4 {
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 40px;
  }

  .div-block-52, .div-block-53 {
    height: 250px;
  }

  .div-block-54 {
    height: 300px;
  }

  .text-block-402, .text-block-403, .text-block-404 {
    text-align: left;
  }

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

  .logo1_logo {
    max-height: 3rem;
  }

  .heading-style-h6 {
    font-size: 1.125rem;
  }

  .logo1_list {
    padding-top: 1rem;
  }

  .div-block-57 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .logo-image {
    width: 130px;
    height: 90px;
  }

  .div-block-58 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .div-block-59 {
    margin-top: 0;
  }

  .text-block-412 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 25px;
  }

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

  .heading-style-h1 {
    font-size: 2.5rem;
  }

  .text-block-413 {
    width: 400px;
  }

  .footer3_legal-list {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    grid-auto-flow: row;
  }

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

  .footer3_credit-text {
    margin-top: 2rem;
  }

  .footer3_menu-wrapper {
    grid-column-gap: 1.5rem;
  }

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

  .footer3_top-wrapper {
    grid-row-gap: 3rem;
  }

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

  .footer3_bottom-wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding-bottom: 1rem;
  }

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

  .footer-wrapper {
    flex-direction: column;
    align-items: center;
    padding-right: 10px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .footer-block {
    align-items: center;
  }

  .footer-link:hover {
    color: #1a1b1fbf;
  }

  .footer-social-block {
    margin-top: 20px;
    margin-left: -20px;
  }

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

  .footer-divider {
    margin-top: 60px;
  }

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

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

  .footer-wrapper-2 {
    flex-direction: column;
    align-items: center;
  }

  .footer-content-2 {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .field-label-4, .submit-button-4 {
    font-size: 12px;
  }

  .text-block-286 {
    margin-bottom: 20px;
    font-size: 12px;
  }

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

  .text-block-284, .text-field-9, .textarea, .text-block-285 {
    font-size: 12px;
  }

  .heading-106 {
    font-size: 30px;
    line-height: 30px;
  }

  .text-field-8, .text-block-287 {
    font-size: 12px;
  }

  .section-43 {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-123 {
    flex-flow: column;
    display: flex;
  }

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

  .container-481 {
    width: 100%;
  }

  .text-block-417 {
    font-size: 25px;
    line-height: 30px;
  }

  .section-44 {
    padding: 60px 40px 100px;
  }

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

  .div-block-137, .div-block-147, .div-block-148, .div-block-149 {
    height: 0;
  }

  .gallery21_mask {
    width: 100%;
  }

  .gallery21_slide {
    padding-right: 1.5rem;
  }

  .heading-style-h2 {
    font-size: 2.25rem;
  }

  .section-45 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .text-block-423 {
    font-size: 16px;
  }

  .text-block-424, .text-block-429, .text-block-431, .text-block-432, .text-block-433, .text-block-434 {
    font-size: 25px;
  }

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

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

  .div-block-156 {
    padding-right: 10px;
  }

  .section-47 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-subscribe-left {
    padding: 60px 15px;
  }

  .margin-bottom-24px {
    width: 400px;
  }

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

  .text-block-447 {
    font-size: 20px;
  }

  .text-block-448 {
    width: 500px;
    font-size: 35px;
  }

  .text-block-449 {
    width: 400px;
  }

  .section-50, .section-51 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .text-block-454 {
    font-size: 14px;
  }

  .text-block-455 {
    font-size: 30px;
  }

  .div-block-191 {
    padding-left: 0;
    padding-right: 0;
  }

  .gallery-scroll, .gallery-slider {
    padding: 60px 15px;
  }

  .gallery-slide {
    margin-left: 10px;
    margin-right: 10px;
  }

  .gallery-slide-text {
    line-height: 30px;
  }

  .gallery-slider-left {
    left: -20px;
  }

  .gallery-slider-right {
    right: -20px;
  }

  .section-52 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .text-block-459 {
    font-size: 30px;
  }

  .text-block-460 {
    width: 450px;
  }

  .text-block-461 {
    font-size: 14px;
  }

  .text-block-468, .text-block-469, .text-block-470, .text-block-471, .text-block-472, .text-block-473 {
    font-size: 30px;
  }

  .text-block-474, .text-block-475, .text-block-476, .text-block-477, .text-block-478, .text-block-479 {
    width: 450px;
  }

  .text-block-480, .text-block-481, .text-block-482, .text-block-483, .text-block-484, .text-block-485, .text-block-487 {
    font-size: 14px;
  }

  .text-block-488 {
    font-size: 30px;
  }

  .text-block-489 {
    width: 450px;
  }

  .gallery-scroll-2 {
    padding: 60px 15px;
  }

  .text-block-490 {
    font-size: 20px;
  }

  .text-block-491 {
    font-size: 35px;
    line-height: 45px;
  }

  .text-block-492 {
    width: 450px;
  }

  .section-61 {
    flex-flow: column;
    padding-top: 100px;
    padding-left: 40px;
    padding-right: 40px;
    display: block;
  }

  .div-block-230 {
    margin-top: 40px;
  }

  .text-block-501 {
    font-size: 20px;
  }

  .text-block-502 {
    font-size: 30px;
    line-height: 35px;
  }

  .text-block-503 {
    width: 400px;
  }

  .section-63 {
    padding: 60px 20px;
  }

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

  .div-block-245 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    place-items: center start;
    padding: 0;
  }

  .section-64 {
    padding-left: 0;
    padding-right: 0;
  }

  .text-block-513 {
    padding: 20px;
  }

  .section-66 {
    padding: 40px 20px;
  }

  .div-block-251 {
    justify-content: center;
    align-items: center;
  }

  .text-block-516 {
    width: 450px;
  }

  .div-block-255 {
    width: 490px;
  }

  .text-block-523 {
    font-size: 16px;
  }

  .text-block-524 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .div-block-256 {
    margin-top: 40px;
    padding: 20px;
  }

  .div-block-258 {
    margin-left: 0;
    position: static;
  }

  .div-block-260, .div-block-261 {
    padding: 20px;
  }

  .div-block-262, .div-block-263 {
    margin-left: 0;
  }

  .section-68 {
    margin-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-270, .div-block-271, .div-block-272, .div-block-273, .div-block-274, .div-block-275 {
    height: 230px;
  }

  .section-69 {
    justify-items: center;
    padding: 20px;
  }

  .menu-icon_line-middle-2 {
    background-color: #fafafa;
  }

  .navbar_link-2 {
    color: #000a64;
    text-align: center;
    background-color: #fafafa00;
    border-bottom: 1px solid #000a64;
    font-size: 14px;
  }

  .navbar_link-2._1 {
    background-color: #fafafa00;
  }

  .menu-icon_line-top-2 {
    background-color: #fff;
  }

  .menu-icon_line-bottom-2 {
    background-color: #fafafa;
  }

  .text-span-139 {
    font-size: 25px;
  }

  .div-block-291, .div-block-293, .div-block-299, .div-block-300 {
    flex-flow: column;
    align-items: center;
    display: flex;
  }

  .section-70 {
    background-position: 0 0, 0 100%;
  }

  .div-block-301 {
    justify-content: center;
    align-items: center;
  }

  .text-block-563 {
    text-align: center;
    padding-left: 0;
    font-size: 20px;
  }

  .text-block-564 {
    text-align: center;
    width: 450px;
    padding-left: 0;
    font-size: 35px;
    line-height: 40px;
  }

  .text-block-565 {
    text-align: center;
    width: 450px;
    padding-left: 0;
  }

  .section-71 {
    padding-left: 60px;
    padding-right: 60px;
  }

  .text-block-566 {
    padding-left: 0;
    padding-right: 0;
  }

  .team5_list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .text-size-large {
    font-size: 1.125rem;
  }

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

  .heading-style-h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .faq6_content {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .faq6_icon-wrapper {
    width: 1.75rem;
  }

  .faq6_question {
    padding: 1rem 1.25rem;
  }

  .faq6_answer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .section-74 {
    padding-top: 10px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .container-913 {
    width: 100px;
    height: 100px;
  }

  .container-211 {
    width: 100px;
    height: 100px;
    margin-top: 10px;
    margin-left: 20px;
  }

  .bold-text-122 {
    width: 181.6px;
    height: 33.6px;
  }

  .container-217 {
    width: 150px;
    height: 400px;
    margin-left: -8px;
    margin-right: 0;
    padding: 0 10px;
  }

  .text-block-127 {
    font-size: 14px;
  }

  .container-213 {
    width: 170px;
    margin-left: -16px;
  }

  .slide-8 {
    background-color: #fafafa;
  }

  .container-224 {
    width: 100px;
    height: 100px;
    margin-top: 9px;
  }

  .container-914 {
    width: 100px;
    height: 500px;
  }

  .container-220 {
    width: 100px;
    height: 100px;
    margin-top: 9px;
    margin-right: 0;
  }

  .container-216 {
    margin-left: -4px;
  }

  .text-block-120 {
    font-size: 12px;
  }

  .container-212 {
    margin-left: -4px;
  }

  .text-block-569 {
    width: 120px;
    padding-top: 10px;
    padding-left: 0;
    font-size: 10px;
    line-height: 18px;
  }

  .grid-38 {
    width: 236px;
  }

  .text-span-90 {
    font-size: 14px;
  }

  .text-block-570 {
    width: 115px;
    margin-left: 5px;
    font-size: 10px;
    overflow: visible;
  }

  .container-223 {
    margin-left: -6px;
    margin-right: 0;
  }

  .text-block-125 {
    font-size: 12px;
  }

  .container-221 {
    width: 100px;
    margin-right: 14px;
  }

  .heading-68 {
    width: 120px;
    margin-left: -10px;
    font-size: 10px;
  }

  .container-215 {
    width: 100px;
    height: 100px;
    margin-top: 20px;
    margin-left: 25px;
  }

  .grid-37 {
    margin-top: 0;
    margin-left: -4px;
  }

  .text-block-126 {
    width: 120px;
    font-size: 10px;
  }

  .text-block-571 {
    width: 130px;
    margin-bottom: 0;
    margin-left: -15px;
    font-size: 10px;
    line-height: 18px;
  }

  .text-block-128 {
    font-size: 12px;
  }

  .text-block-123 {
    width: 150px;
    height: 400px;
    margin-top: 10px;
    margin-left: 0;
    margin-right: 16px;
    padding: 0;
    font-size: 10px;
  }

  .text-block-124 {
    font-size: 14px;
  }

  .container-225 {
    margin: 0 0 0 -9px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .text-block-572 {
    width: 130px;
    margin-left: 10px;
    font-size: 10px;
  }

  .container-210 {
    width: 264px;
    display: flex;
  }

  .container-214 {
    width: 237px;
    display: flex;
  }

  .text-block-129 {
    width: 120px;
    padding-left: 0;
    font-size: 10px;
  }

  .text-block-122 {
    font-size: 12px;
  }

  .container-915 {
    width: 120px;
    height: 160px;
    margin-top: 170px;
    padding-right: 60px;
    font-size: 12px;
  }

  .text-block-121 {
    font-size: 14px;
  }

  .team8_image-wrapper {
    height: 100%;
  }

  .team8_list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .heading-style-h2-2 {
    font-size: 2.25rem;
  }

  .section-75, .section-76 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .div-block-305 {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
    place-items: center;
  }

  .div-block-312 {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .div-block-314, .div-block-318, .div-block-319, .div-block-320 {
    height: 200px;
  }

  .text-block-577 {
    font-size: 13px;
  }

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

  .div-block-326 {
    background-position: 50% 0;
    padding-left: 30px;
    padding-right: 30px;
  }

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

  .div-block-339 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .div-block-340 {
    flex-flow: column;
    height: 350px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .text-block-596 {
    font-size: 34px;
  }

  .text-block-597 {
    width: 350px;
  }

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

@media screen and (max-width: 479px) {
  .navigation {
    padding-left: 20px;
  }

  .navigation-container {
    height: 60px;
  }

  .header {
    height: 100vh;
    margin-top: -60px;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .h1 {
    letter-spacing: 0;
    font-size: 30px;
    line-height: 42px;
  }

  .button.cc-cta {
    padding-left: 55px;
    padding-right: 55px;
  }

  .container.cc-cta {
    text-align: center;
    justify-content: center;
  }

  .h2 {
    font-size: 20px;
    line-height: 30px;
  }

  .h2.cc-center, .h2.cc-justify {
    text-align: center;
  }

  .slider-section {
    margin-top: 75px;
  }

  .slider {
    height: 150px;
    margin-top: -75px;
  }

  ._2-row-image {
    align-items: flex-start;
    margin-bottom: 60px;
  }

  ._2-row-text {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  ._2-row-text.cc-bottom {
    margin-right: 0;
  }

  ._2-row-text.cc-bottom.cc-reverse {
    margin-left: 0;
  }

  .row.cc-bottom {
    margin-top: 60px;
  }

  .cta-column {
    justify-content: center;
  }

  .footer-column {
    flex-wrap: wrap;
  }

  .text-footer-credits {
    width: 96%;
  }

  .footer-links-list, .footer-social {
    width: 50%;
  }

  .header-inner {
    margin-top: -60px;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .header-inner.cc-header-extra {
    padding-bottom: 150px;
  }

  .premium-banner {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .premium-banner-inner {
    padding-left: 30px;
    padding-right: 30px;
  }

  .ex-capabilties {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .premium-image-banner {
    margin-bottom: 20px;
  }

  .premium-image-container {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 60px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .image-banner {
    margin-bottom: 30px;
    margin-right: 0;
  }

  .service-pillar-facts {
    flex-flow: wrap;
    justify-content: center;
  }

  .fact-block {
    justify-content: center;
  }

  .image-2._1 {
    width: auto;
    padding: 10px;
  }

  .image-2.aaaa, .image-2.bbb {
    padding: 10px;
  }

  .faq {
    padding-top: 90px;
    padding-bottom: 60px;
  }

  .container-questions {
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
  }

  .question-block {
    width: 100%;
    margin: 15px 0;
  }

  .container-facts-inner {
    justify-content: center;
    width: 100%;
  }

  .team-member {
    width: 100%;
  }

  .blog-posts {
    margin-top: -90px;
    margin-bottom: 90px;
  }

  .header-color {
    height: 85%;
  }

  .contact-intro {
    padding-bottom: 80px;
  }

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

  .icon-2 {
    color: #000;
  }

  .menu-button:active, .menu-button.w--open {
    background-color: var(--white);
  }

  .pricing {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .service-pillars-inner {
    width: 100%;
  }

  .sucess-stories {
    padding-top: 90px;
    padding-bottom: 60px;
  }

  .container-success-stories {
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
  }

  .success-block {
    width: 100%;
    margin: 15px 0;
  }

  .h2-black {
    font-size: 20px;
    line-height: 30px;
  }

  .partnerships-container {
    flex-flow: wrap;
    justify-content: space-around;
    align-items: flex-start;
  }

  .partnerships-image-banner {
    margin-bottom: 20px;
  }

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

  .ex-capabilties-copy {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .contact-intro-example, .connect-intro {
    padding-bottom: 80px;
  }

  .container-mgmt-inner {
    width: 100%;
  }

  .team-image-banner {
    margin-bottom: 20px;
  }

  .containersolutions-inner {
    width: 100%;
  }

  .value-intro {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .image-square {
    margin-top: -55px;
  }

  .success-info {
    padding-left: 10px;
    padding-right: 10px;
  }

  .success-title {
    font-size: 30px;
    line-height: 42px;
  }

  .cloudflex-offering {
    padding-left: 10px;
    padding-right: 10px;
  }

  .form {
    text-align: center;
    width: 280px;
  }

  .header-inner-home {
    margin-top: -60px;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .header-inner-home.cc-header-extra {
    padding-bottom: 150px;
  }

  .header-inner-partnerships {
    margin-top: -60px;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .header-inner-partnerships.cc-header-extra {
    padding-bottom: 150px;
  }

  .header-inner-success {
    margin-top: -60px;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .header-inner-success.cc-header-extra {
    padding-bottom: 150px;
  }

  .header-inner-solutions {
    margin-top: -60px;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .header-inner-solutions.cc-header-extra {
    padding-bottom: 150px;
  }

  .header-inner-cloudflex {
    margin-top: -60px;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .header-inner-cloudflex.cc-header-extra {
    padding-bottom: 150px;
  }

  .header-inner-about {
    margin-top: -60px;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .header-inner-about.cc-header-extra {
    padding-bottom: 150px;
  }

  .header-inner-contact {
    margin-top: -60px;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .header-inner-contact.cc-header-extra {
    padding-bottom: 150px;
  }

  .cta-banner, .cta-banner-pimato {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .grid {
    flex-flow: column;
    grid-auto-flow: column;
    display: block;
  }

  .container-4, .container-5 {
    margin-top: 40px;
  }

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

  .nav-menu-two, .nav-menu-2 {
    flex-direction: column;
  }

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

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

  .nav-menu-two-2 {
    flex-direction: column;
  }

  .div-block-39 {
    padding-left: 10px;
  }

  .text-block-157 {
    font-size: 10px;
  }

  .heading-78 {
    font-size: 30px;
    line-height: 30px;
  }

  .text-block-158 {
    width: auto;
    font-size: 12px;
  }

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

  .nav-menu-three, .nav-menu-two-3 {
    flex-direction: column;
  }

  .dropdown-link-39, .dropdown-link-43, .dropdown-link-40 {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 14px;
  }

  .dropdown-toggle-13 {
    width: 115px;
  }

  .menu-icon_line-top, .menu-icon_line-bottom {
    background-color: var(--bg-grey);
  }

  .navbar-glass-tintt {
    display: block;
  }

  .menu-icon_line-middle {
    background-color: var(--bg-grey);
  }

  .dropdown-list-24 {
    display: none;
  }

  .menu-icon-2 {
    pointer-events: auto;
    background-color: #2d2f3700;
  }

  .dropdown-list-23 {
    display: none;
  }

  .navbar-glass-shine {
    display: block;
  }

  .navbar-5 {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    display: block;
  }

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

  .navbar_logo {
    width: auto;
    height: 40px;
  }

  .navbar_link {
    border-bottom: 1px solid var(--dark-blue);
    background-color: var(--trans);
    color: var(--dark-blue);
    text-align: center;
    font-size: 14px;
  }

  .dropdown-link-38 {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 14px;
  }

  .navbar_menu.is-page-height-tablet {
    color: #382828;
    background-color: #e0e2e6;
    border-bottom-style: none;
    border-radius: 20px;
    height: auto;
    margin-top: 10px;
    padding-bottom: 10px;
    transition-property: none;
    box-shadow: 0 0 8px #ffffffcf;
  }

  .dropdown-toggle-14 {
    width: 93px;
    padding-right: 40px;
  }

  .navbar_menu-buttons {
    mix-blend-mode: normal;
    background-color: #fffdfd;
    display: none;
  }

  .navbar-main-container {
    padding-top: 0;
    padding-bottom: 0;
  }

  .navbar_menu-button {
    color: #fff;
  }

  .menu-icon_line-middle-inner {
    background-color: var(--trans);
  }

  .div-block-41 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block-384 {
    font-size: 20px;
    line-height: 30px;
  }

  .text-block-385, .text-block-386 {
    font-size: 14px;
  }

  .div-block-43 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-3 {
    padding: 40px 20px;
  }

  .text-block-388 {
    line-height: 35px;
  }

  .button-44 {
    font-size: 14px;
  }

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

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

  .container-large {
    margin-top: 0;
  }

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

  .text-block-389, .text-block-400 {
    font-size: 14px;
  }

  .text-block-401 {
    margin-left: 10px;
    margin-right: 10px;
    line-height: 30px;
  }

  .div-block-51 {
    margin-top: 10px;
  }

  .section-4 {
    margin-top: 40px;
    margin-left: 15px;
    margin-right: 15px;
    padding: 20px 0;
  }

  .div-block-52, .div-block-53 {
    height: 300px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .div-block-54 {
    height: 320px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .text-block-402 {
    font-size: 40px;
    line-height: 40px;
  }

  .logo1_list {
    justify-content: center;
  }

  .logo-image {
    width: 100px;
    height: 70px;
  }

  .section-5 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-59 {
    margin-top: 0;
    margin-left: 10px;
    margin-right: 10px;
  }

  .text-block-412 {
    line-height: 35px;
  }

  .text-block-413 {
    width: 200px;
    font-size: 25px;
    line-height: 35px;
  }

  .div-block-61 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

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

  .footer3_menu-wrapper {
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

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

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

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

  .footer-wrapper {
    padding-right: 10px;
  }

  .image-13 {
    height: 100px;
    margin-left: 0;
  }

  .text-block-415 {
    width: auto;
    font-size: 11px;
    line-height: 18px;
  }

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

  .field-label-4, .submit-button-4 {
    font-size: 12px;
  }

  .text-block-286 {
    width: auto;
    margin-bottom: 20px;
    font-size: 12px;
  }

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

  .text-block-284, .text-field-9, .textarea, .text-block-285 {
    font-size: 12px;
  }

  .heading-106 {
    width: auto;
    font-size: 30px;
    line-height: 30px;
  }

  .text-field-8, .text-block-287 {
    font-size: 12px;
  }

  .section-43 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-123 {
    flex-flow: column;
    grid-auto-flow: row;
    display: flex;
  }

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

  .container-481 {
    width: 100%;
  }

  .text-block-416 {
    font-size: 14px;
  }

  .section-44 {
    padding: 60px 20px;
  }

  .gallery21_slide {
    padding-right: 0;
  }

  .section-45 {
    padding: 20px;
  }

  .text-block-423 {
    font-size: 14px;
  }

  .text-block-424 {
    line-height: 35px;
  }

  .contact1_form {
    grid-row-gap: 1.5rem;
  }

  .section-46 {
    background-position: 0%;
    background-size: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-153 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block-435 {
    width: 200px;
  }

  .text-block-436 {
    width: 200px;
    font-size: 30px;
    line-height: 35px;
  }

  .text-block-437 {
    text-align: center;
    font-size: 14px;
  }

  .div-block-155 {
    grid-template-columns: 1fr;
    align-items: end;
    margin-bottom: -311px;
  }

  .div-block-156 {
    border-bottom: 1px solid #000;
    border-right-style: none;
    padding-bottom: 20px;
    padding-right: 0;
  }

  .div-block-157 {
    border-top: 1px solid #000;
    border-left-style: none;
    padding-top: 20px;
    padding-left: 0;
  }

  .text-block-441 {
    margin-top: 20px;
    font-size: 25px;
    line-height: 35px;
  }

  .section-47 {
    margin-top: 220px;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-159 {
    place-items: center;
    padding: 0;
  }

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

  .div-block-163 {
    grid-template-rows: auto auto auto;
    place-items: center;
  }

  .text-block-442 {
    font-size: 18px;
  }

  .text-block-443 {
    margin-bottom: 0;
    font-size: 14px;
  }

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

  .margin-bottom-24px {
    width: 250px;
  }

  .hero-form {
    align-self: stretch;
    margin-bottom: 15px;
  }

  .hero-form-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-form-input {
    width: 100%;
    height: 48px;
    margin-bottom: 10px;
  }

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

  .div-block-176 {
    margin-left: 0;
    margin-right: 0;
  }

  .text-block-447 {
    font-size: 14px;
  }

  .text-block-448 {
    width: 200px;
    font-size: 25px;
    line-height: 35px;
  }

  .text-block-449 {
    width: 200px;
  }

  .section-50, .section-51 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block-451 {
    font-size: 16px;
  }

  .text-block-452 {
    font-size: 20px;
    line-height: 30px;
  }

  .div-block-178 {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
    margin-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-184 {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block-454 {
    font-size: 14px;
  }

  .text-block-455 {
    font-size: 18px;
    line-height: 30px;
  }

  .text-block-456 {
    font-size: 16px;
  }

  .text-block-457 {
    font-size: 20px;
    line-height: 30px;
  }

  .div-block-191 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }

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

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

  .gallery-slide-wrapper {
    max-width: 100%;
    margin-right: 0%;
  }

  .gallery-slider-left {
    left: -20px;
  }

  .gallery-slider-right {
    right: -20px;
  }

  .section-52 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: center;
    height: 600px;
    padding-left: 20px;
    padding-right: 20px;
    display: block;
  }

  .div-block-195 {
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 20px;
    padding-bottom: 20px;
  }

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

  .text-block-459 {
    text-align: center;
    font-size: 30px;
  }

  .text-block-460 {
    width: 200px;
  }

  .text-block-461 {
    text-align: left;
    font-size: 14px;
  }

  .section-53, .section-54, .section-55, .section-56, .section-57 {
    height: 600px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-196 {
    align-items: flex-start;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .div-block-197, .div-block-198, .div-block-199, .div-block-200 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .div-block-201 {
    background-image: linear-gradient(180deg, var(--trans), black 54%), linear-gradient(180deg, black, var(--trans)), url('../images/13633.png');
    background-position: 0 0, 0 0, 50%;
    background-size: auto, auto, cover;
    height: 650px;
    padding: 20px;
  }

  .text-block-468 {
    font-size: 30px;
  }

  .text-block-469 {
    width: 200px;
    font-size: 30px;
    line-height: 35px;
  }

  .text-block-470, .text-block-471 {
    font-size: 30px;
    line-height: 35px;
  }

  .text-block-472, .text-block-473, .text-block-474, .text-block-475 {
    width: 200px;
  }

  .text-block-476, .text-block-477, .text-block-478 {
    width: 230px;
  }

  .text-block-479 {
    width: 240px;
  }

  .text-block-480, .text-block-481, .text-block-482 {
    font-size: 14px;
  }

  .text-block-483 {
    width: 230px;
    font-size: 14px;
  }

  .section-59 {
    height: 600px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-202 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .text-block-489 {
    width: 240px;
  }

  .div-block-204 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

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

  .gallery-wrapper-2 {
    grid-template-columns: 1fr;
  }

  .div-block-213 {
    margin-top: 110px;
  }

  .div-block-214 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .text-block-490 {
    font-size: 14px;
  }

  .text-block-491 {
    width: 200px;
    font-size: 20px;
    line-height: 30px;
  }

  .text-block-492 {
    width: 200px;
  }

  .text-span-118 {
    font-size: 20px;
  }

  .section-61 {
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block-493 {
    font-size: 25px;
  }

  .text-block-494 {
    width: 260px;
  }

  .div-block-230 {
    width: 280px;
  }

  .text-block-495 {
    width: auto;
    padding: 20px;
    font-size: 14px;
    line-height: 20px;
  }

  .div-block-231 {
    padding: 0 10px;
  }

  .div-block-233 {
    grid-template-columns: .25fr 1fr;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .image-64 {
    height: auto;
  }

  .image-65 {
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .div-block-235 {
    grid-template-columns: .25fr 1fr;
  }

  .div-block-236 {
    padding: 0 10px 0 0;
  }

  .text-block-496 {
    width: auto;
    font-size: 12px;
  }

  .text-block-497, .text-block-498, .text-block-499 {
    font-size: 12px;
  }

  .div-block-237 {
    margin: 20px 0 0;
    padding: 10px;
  }

  .text-block-501 {
    color: var(--white);
    font-size: 14px;
  }

  .text-block-502 {
    width: 200px;
    font-size: 20px;
    line-height: 30px;
  }

  .text-block-503 {
    width: 200px;
  }

  .section-63 {
    padding: 40px 20px;
  }

  .text-block-504 {
    font-size: 14px;
  }

  .text-block-505 {
    font-size: 16px;
    line-height: 25px;
  }

  .div-block-242, .div-block-243 {
    padding: 40px 20px;
  }

  .div-block-244 {
    padding-left: 20px;
    padding-right: 20px;
  }

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

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

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

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

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

  .div-block-245 {
    grid-template-columns: 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .section-64 {
    padding: 20px 0;
  }

  .text-block-513, .section-65 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-66 {
    padding: 20px;
  }

  .div-block-250 {
    justify-items: start;
  }

  .div-block-251 {
    align-items: flex-start;
    display: flex;
  }

  .text-block-516 {
    width: 240px;
    font-size: 16px;
  }

  .div-block-252 {
    width: 240px;
    padding: 20px;
  }

  .div-block-253, .div-block-254 {
    width: 240px;
  }

  .div-block-255 {
    background-position: 50%;
    width: 240px;
  }

  .section-67 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block-523 {
    font-size: 14px;
    line-height: 20px;
  }

  .text-block-524 {
    font-size: 16px;
    line-height: 25px;
  }

  .div-block-256 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    margin-top: 20px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 20px;
  }

  .text-block-525 {
    font-size: 14px;
    line-height: 20px;
  }

  .div-block-258 {
    margin-left: 0;
    position: static;
  }

  .div-block-260 {
    justify-items: start;
    margin-left: 10px;
    margin-right: 10px;
    padding: 20px;
  }

  .div-block-261 {
    margin-left: 10px;
    margin-right: 10px;
    padding: 20px;
  }

  .div-block-262 {
    align-items: flex-start;
    margin-left: 0;
  }

  .text-block-528 {
    font-size: 14px;
    line-height: 20px;
  }

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

  .text-block-531 {
    font-size: 14px;
    line-height: 20px;
  }

  .div-block-263 {
    margin-left: 0;
  }

  .section-68 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block-534 {
    font-size: 14px;
  }

  .text-block-535 {
    font-size: 18px;
    line-height: 25px;
  }

  .div-block-270, .div-block-271, .div-block-272, .div-block-273, .div-block-274 {
    height: 260px;
  }

  .div-block-275 {
    height: 280px;
  }

  .section-69 {
    padding: 20px;
  }

  .text-block-549 {
    width: 200px;
  }

  .text-block-550 {
    width: 240px;
    font-size: 16px;
    line-height: 25px;
  }

  .text-block-551 {
    width: 240px;
  }

  .div-block-280, .div-block-284 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .button-51 {
    width: 150px;
    font-size: 14px;
  }

  .menu-icon_line-middle-inner-2 {
    background-color: #fafafa00;
  }

  .menu-icon_line-middle-2 {
    background-color: #fafafa;
  }

  .navbar_link-2 {
    color: #000a64;
    text-align: center;
    background-color: #fafafa00;
    border-bottom: 1px solid #000a64;
    font-size: 14px;
  }

  .menu-icon_line-top-2 {
    background-color: #fafafa;
  }

  .navbar-glass-tintt-2 {
    display: block;
  }

  .menu-icon_line-bottom-2 {
    background-color: #fafafa;
  }

  .div-block-290 {
    flex-flow: column;
    align-items: flex-start;
    margin-top: 120px;
    display: flex;
  }

  .div-block-291 {
    align-items: center;
  }

  .div-block-292 {
    flex-flow: column;
    align-items: center;
    display: flex;
  }

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

  .div-block-294 {
    margin-top: 60px;
  }

  .div-block-295 {
    margin-top: 80px;
  }

  .div-block-296 {
    margin-top: 50px;
  }

  .div-block-297 {
    margin-top: 130px;
  }

  .div-block-298 {
    margin-top: 150px;
  }

  .div-block-299, .div-block-300 {
    flex-flow: column;
    align-items: center;
    display: flex;
  }

  .text-block-563 {
    font-size: 16px;
  }

  .text-block-564 {
    width: 200px;
    font-size: 25px;
    line-height: 35px;
  }

  .text-block-565 {
    width: 200px;
  }

  .section-71 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .text-block-566 {
    font-size: 18px;
  }

  .team5_list, .faq6_content {
    grid-template-columns: 1fr;
  }

  .container-913 {
    width: 100px;
    height: 100px;
    margin-top: 20px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .container-211 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    margin-left: 20px;
    margin-right: 20px;
    display: block;
  }

  .container-217 {
    text-align: left;
    width: 170px;
    height: 335px;
    margin-top: -65px;
    margin-left: -5px;
  }

  .our-team {
    padding-left: 10px;
    padding-right: 10px;
  }

  .slide-6 {
    width: auto;
    height: 450px;
  }

  .text-block-91 {
    font-size: 14px;
    line-height: 20px;
  }

  .text-block-127 {
    font-size: 12px;
  }

  .container-213 {
    height: 335px;
  }

  .slide-7, .slide-8 {
    width: auto;
    height: 450px;
  }

  .container-224 {
    width: 100px;
    height: 100px;
    margin-left: 5px;
    margin-right: 5px;
  }

  .container-914 {
    width: 120px;
    height: 480px;
    margin-top: -24px;
    margin-left: -14px;
    margin-right: 0;
    padding-left: 10px;
  }

  .container-220 {
    width: 100px;
    height: 100px;
    margin-top: 20px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .container-216 {
    width: auto;
    margin-top: 0;
    margin-left: 20px;
  }

  .icon-5 {
    margin-right: 0;
  }

  .heading-53, .text-block-120 {
    font-size: 12px;
  }

  .icon-6 {
    margin-left: 0;
  }

  .container-212 {
    width: 100px;
    margin-left: 20px;
    padding-left: 0;
  }

  .container-912 {
    height: 450px;
  }

  .text-span-175 {
    font-size: 9px;
  }

  .text-block-569 {
    width: 110px;
    margin-top: -175px;
    margin-left: auto;
    font-size: 9px;
    line-height: 15px;
  }

  .grid-38 {
    margin-left: 0;
  }

  .text-span-90 {
    font-size: 12px;
  }

  .text-block-570 {
    text-align: center;
    width: 100px;
    margin-left: 3px;
    font-size: 10px;
    line-height: 15px;
  }

  .slide-37 {
    width: 100%;
    max-width: 100%;
    height: 450px;
  }

  .slider-4 {
    height: 600px;
  }

  .slide-38 {
    width: 100%;
    height: 450px;
  }

  .container-223 {
    margin-left: 5px;
  }

  .text-block-125 {
    font-size: 12px;
  }

  .container-221 {
    width: auto;
    margin-left: 0;
  }

  .grid-68 {
    grid-column-gap: 13px;
    grid-row-gap: 13px;
    grid-template-columns: 1.25fr 1fr;
    padding-left: 0;
  }

  .slide-nav-3 {
    position: absolute;
  }

  .heading-68 {
    width: 120px;
    margin-top: -35px;
    font-size: 10px;
    line-height: 15px;
  }

  .container-215 {
    background-position: 0 0;
    width: 100px;
    height: 100px;
    margin-top: 0;
    margin-left: 20px;
    margin-right: 10px;
  }

  .text-block-126 {
    width: 145px;
    font-size: 12px;
    line-height: 15px;
  }

  .text-block-571 {
    width: 120px;
    height: 480px;
    margin-left: -10px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 9px;
    line-height: 15px;
  }

  .text-block-128 {
    width: 100px;
    font-size: 12px;
  }

  .text-block-123 {
    width: 115px;
    margin-bottom: 0;
    font-size: 10px;
    line-height: 15px;
  }

  .text-block-124 {
    font-size: 12px;
  }

  .text-block-92 {
    font-size: 10px;
  }

  .container-225 {
    width: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .text-block-572 {
    width: 100px;
    margin: 0;
    padding: 0;
    font-size: 12px;
    line-height: 15px;
  }

  .container-210 {
    height: 450px;
  }

  .container-222 {
    width: auto;
    height: 450px;
  }

  .bold-text-25 {
    font-size: 12px;
  }

  .container-214 {
    height: 420px;
    margin-left: 0;
    padding-left: 0;
    padding-right: 15px;
  }

  .text-block-129 {
    width: 145px;
    font-size: 12px;
    line-height: 15px;
  }

  .text-block-122 {
    font-size: 12px;
  }

  .container-915 {
    align-items: flex-start;
    margin-top: 171px;
    margin-left: -2px;
    padding-left: 0;
    padding-right: 20px;
  }

  .container-218 {
    padding-right: 0;
  }

  .text-block-121 {
    font-size: 12px;
  }

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

  .section-75 {
    padding: 20px;
  }

  .section-76 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-305 {
    justify-items: stretch;
  }

  .div-block-306 {
    width: 200px;
    height: 240px;
    margin-top: 100px;
  }

  .div-block-307 {
    width: 250px;
    height: auto;
  }

  .text-block-575 {
    margin-bottom: 10px;
  }

  .div-block-312 {
    grid-template-columns: 1fr;
  }

  .section-77 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-326, .div-block-327, .div-block-328 {
    padding: 40px 20px;
  }

  .section-78 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-339, .div-block-340 {
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-79 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-345 {
    background-position: 50%;
    height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .text-block-597 {
    width: 200px;
  }

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

  .button-61 {
    width: 130px;
    font-size: 14px;
  }

  .button-62 {
    width: 130px;
  }

  .div-block-347, .div-block-348 {
    margin-top: 70px;
  }
}

#w-node-b90a939e-2681-18a9-1900-5422d7757a8b-26b2258c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-af15b006-dd45-ac2e-bd46-f15bb09068af-26b2258c {
  place-self: auto;
}

#w-node-_0473c23c-d55d-ead7-2037-973c9e548c14-26b2258c {
  align-self: center;
}

#w-node-_068860d4-258f-e1cd-fc14-935c1bb20d35-26b2258c {
  place-self: auto center;
}

#w-node-c38b7dea-0b67-4bf4-ee98-f23f3465a87e-26b2258c, #w-node-_621f8214-570e-b54b-5715-6213081e07b6-26b2258c {
  justify-self: center;
}

#w-node-_6f1ed50e-64c2-1972-b164-b7fbb3e56da9-26b2258c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c858511e-89b8-f319-8aae-22c873c168ad-26b2258c {
  justify-self: end;
}

#w-node-d3ad805f-4d82-e4aa-b97f-aa147f2f5dc8-26b2258c {
  justify-self: start;
}

#w-node-_2117e719-5a12-8a8b-1901-e959585f24b7-26b2258c, #w-node-_3a813d82-55a3-d6ef-bfc6-8e00168fa893-26b2258c {
  align-self: start;
}

#w-node-bbed4afd-5701-39d0-ccbe-74ff3dc943cb-26b2258c {
  align-self: center;
}

#w-node-_5afdd28e-1ace-a987-bc7b-7fa04318f518-26b2258c, #w-node-_5afdd28e-1ace-a987-bc7b-7fa04318f52c-26b2258c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_34e0014c-06da-43a8-45b2-865732121aba-26aa3308 {
  place-self: auto;
}

#w-node-_8aa2fc57-4c4b-e19e-b175-1e37a3f82389-26aa3308, #w-node-_3c46542f-c207-3be5-4aca-0e15c8a05dde-26aa3308 {
  align-self: auto;
}

#w-node-_6544a206-ec36-e038-ae48-a949f6d95f5f-26aa3308 {
  align-self: center;
}

#w-node-bc9252ae-3ddc-c0dc-e325-9515be9993d8-26aa3308 {
  align-self: auto;
}

#w-node-_33d51d85-b97d-06d9-bf72-575ffeca149e-26aa3308 {
  place-self: auto;
}

#w-node-d9ab5d9e-4427-5789-90b4-95cb22b1334f-26aa3308 {
  place-self: center end;
}

#w-node-_18c28ce5-9381-032e-dadc-d50ca1ec94ac-26aa3308 {
  align-self: auto;
}

#w-node-_18c28ce5-9381-032e-dadc-d50ca1ec94b6-26aa3308 {
  align-self: center;
}

#w-node-_18c28ce5-9381-032e-dadc-d50ca1ec94b7-26aa3308 {
  align-self: auto;
}

#w-node-_18c28ce5-9381-032e-dadc-d50ca1ec94ba-26aa3308 {
  place-self: auto;
}

#w-node-_18c28ce5-9381-032e-dadc-d50ca1ec94be-26aa3308 {
  place-self: center end;
}

#w-node-e00ef7e7-370b-dcb7-5383-b7aecff8ed7a-26aa3308 {
  align-self: auto;
}

#w-node-e00ef7e7-370b-dcb7-5383-b7aecff8ed84-26aa3308 {
  align-self: center;
}

#w-node-e00ef7e7-370b-dcb7-5383-b7aecff8ed85-26aa3308 {
  align-self: auto;
}

#w-node-e00ef7e7-370b-dcb7-5383-b7aecff8ed88-26aa3308 {
  place-self: auto;
}

#w-node-e00ef7e7-370b-dcb7-5383-b7aecff8ed8c-26aa3308 {
  place-self: center end;
}

#w-node-c35338a1-21b9-1a2a-a6fd-48d0e5045cd1-26aa3308 {
  align-self: auto;
}

#w-node-c35338a1-21b9-1a2a-a6fd-48d0e5045cdb-26aa3308 {
  align-self: center;
}

#w-node-c35338a1-21b9-1a2a-a6fd-48d0e5045cdc-26aa3308 {
  align-self: auto;
}

#w-node-c35338a1-21b9-1a2a-a6fd-48d0e5045cdf-26aa3308 {
  place-self: auto;
}

#w-node-c35338a1-21b9-1a2a-a6fd-48d0e5045ce3-26aa3308 {
  place-self: center end;
}

#w-node-c35338a1-21b9-1a2a-a6fd-48d0e5045ce6-26aa3308 {
  align-self: auto;
}

#w-node-c35338a1-21b9-1a2a-a6fd-48d0e5045cf0-26aa3308 {
  align-self: center;
}

#w-node-c35338a1-21b9-1a2a-a6fd-48d0e5045cf1-26aa3308 {
  align-self: auto;
}

#w-node-c35338a1-21b9-1a2a-a6fd-48d0e5045cf4-26aa3308 {
  place-self: auto;
}

#w-node-c35338a1-21b9-1a2a-a6fd-48d0e5045cf8-26aa3308 {
  place-self: center end;
}

#w-node-c35338a1-21b9-1a2a-a6fd-48d0e5045cfb-26aa3308 {
  align-self: auto;
}

#w-node-c35338a1-21b9-1a2a-a6fd-48d0e5045d05-26aa3308 {
  align-self: center;
}

#w-node-c35338a1-21b9-1a2a-a6fd-48d0e5045d06-26aa3308 {
  align-self: auto;
}

#w-node-c35338a1-21b9-1a2a-a6fd-48d0e5045d09-26aa3308 {
  place-self: auto;
}

#w-node-c35338a1-21b9-1a2a-a6fd-48d0e5045d0d-26aa3308 {
  place-self: center end;
}

#w-node-eaa435bc-6abd-3f8c-0d09-27724f056d0c-26aa3308, #w-node-eaa435bc-6abd-3f8c-0d09-27724f056d13-26aa3308 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_21a0b304-a748-337a-ae61-8990ebd9f35e-507a9d52 {
  place-self: auto center;
}

#w-node-_7eb830d9-504d-fb64-246e-ae4ce42d6f50-507a9d52, #w-node-_3006caa2-9175-8b47-93a7-83b99ad14d3f-507a9d52, #w-node-e8787d19-4cf0-c159-0a39-55076c5c63f1-507a9d52, #w-node-d0d91b6b-6686-67c5-116c-b99f30ab03a3-507a9d52, #w-node-_77d0746a-34e2-acbc-f453-a35673f32845-507a9d52, #w-node-_2b53ffde-cc3f-0c92-b50d-c74024d08aac-507a9d52, #w-node-_92b2eb9c-fc10-a1c7-0855-270c8673c44d-507a9d52, #w-node-b3e61a0b-75ee-cdba-8339-a22df045230e-507a9d52, #w-node-bf090af3-0827-03cb-ea79-4c17a009a4a8-507a9d52, #w-node-ce6f1d32-99f8-266a-de37-a1ae435f5bc1-507a9d52 {
  justify-self: center;
}

#w-node-_225256a5-8389-2c15-0aa7-2eff9fd57401-507a9d52, #w-node-_225256a5-8389-2c15-0aa7-2eff9fd57408-507a9d52, #w-node-_28b14727-2525-a52b-70e3-b07d0af93a14-8503632a, #w-node-_28b14727-2525-a52b-70e3-b07d0af93a1b-8503632a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-acca0d51-373d-7bac-6bf7-84fda576a7ae-543fa2b2 {
  place-self: stretch;
}

#w-node-d0768438-5f19-faf5-0096-5783575d2c48-543fa2b2 {
  place-self: start;
}

#w-node-bb1b4a20-ab7f-dffd-f543-68d3cf289c74-543fa2b2 {
  place-self: center start;
}

#w-node-_40119897-7ab1-6e38-61be-72a2feb2cb7e-543fa2b2 {
  place-self: start center;
}

#w-node-df8996f9-e590-d6c4-d0ca-cd9df41f1af7-543fa2b2 {
  place-self: center start;
}

#w-node-_4da63f9a-291c-d377-0c43-51227418115a-543fa2b2, #w-node-_4da63f9a-291c-d377-0c43-512274181161-543fa2b2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f3cff710-a7d7-e59b-b840-9f82c8547160-80354e43 {
  place-self: auto end;
}

#w-node-_77a6a6b7-7857-2978-0847-04298f41ccb8-80354e43 {
  justify-self: center;
}

#w-node-_5e31802f-9b8a-c12a-b828-e58c54b55d99-80354e43 {
  justify-self: start;
}

#w-node-d632eb0b-75ea-8d0a-d4ea-c31573c8bcb0-80354e43 {
  place-self: center;
}

#w-node-b31edf9a-0e7e-2466-130b-05d9a377ec29-80354e43 {
  justify-self: end;
}

#w-node-_374b7421-90bd-5274-a602-0ca8acf11425-80354e43 {
  place-self: auto start;
}

#w-node-_99f167b8-dbd9-24d9-ea41-8b2b2e7aa1b2-80354e43, #w-node-ec5eb9ff-56c0-1a0e-6eea-a4c02ffd79be-80354e43 {
  justify-self: start;
}

#w-node-_114000d9-97e9-c7fd-add9-7764cea6e60c-80354e43, #w-node-_559faa01-9558-460a-6559-db65f73dac69-80354e43 {
  place-self: auto;
}

#w-node-_7a978d67-30d1-98c5-22e9-74f642534890-80354e43 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: auto;
}

#w-node-_7afd6916-99f6-0386-baa1-c7d38180be38-80354e43, #w-node-b8f4ba67-f0d8-2573-6078-f7072e4bb944-80354e43, #w-node-d9e2a2d3-0be8-6fdc-d011-76aa56954234-80354e43 {
  place-self: auto;
}

#w-node-_0f464f58-eb72-5c83-f893-53cab0c709ee-80354e43 {
  place-self: stretch;
}

#w-node-_68cfe0b3-c60b-e499-a02f-69e4c53d514c-80354e43 {
  align-self: auto;
}

#w-node-babebbca-9b9a-66ee-486e-aab1a9c8060d-80354e43 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_31219814-797a-2eba-a457-67869ca726ca-80354e43 {
  align-self: center;
}

#w-node-_63ed6ae8-a9b2-a7e5-6ec4-7204c8aa19d1-80354e43, #w-node-_63ed6ae8-a9b2-a7e5-6ec4-7204c8aa19d8-80354e43 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e0ddc030-0239-6069-35e4-446d719046b2-eb5af32b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: auto;
}

#w-node-acafaeb2-86e2-ae79-338e-861154741373-eb5af32b, #w-node-d6ff3fbc-d795-632b-e666-e858f6fe96e6-eb5af32b {
  align-self: end;
}

#w-node-_5f1777bf-5c9b-1a52-c04e-6bafbcd0cb33-eb5af32b, #w-node-_3ced7492-9b55-754d-463d-6f2bd4691c82-eb5af32b {
  align-self: auto;
}

#w-node-d33d104b-72eb-3bfe-9c23-def8992d603a-eb5af32b, #w-node-d33d104b-72eb-3bfe-9c23-def8992d6041-eb5af32b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1440px) {
  #w-node-b3e61a0b-75ee-cdba-8339-a22df045230e-507a9d52, #w-node-bf090af3-0827-03cb-ea79-4c17a009a4a8-507a9d52, #w-node-ce6f1d32-99f8-266a-de37-a1ae435f5bc1-507a9d52 {
    align-self: center;
  }

  #w-node-acca0d51-373d-7bac-6bf7-84fda576a7ae-543fa2b2 {
    place-self: auto start;
  }

  #w-node-_762ad2ae-4c32-6733-73b6-9ead2d4774d4-543fa2b2 {
    justify-self: end;
  }

  #w-node-_40119897-7ab1-6e38-61be-72a2feb2cb7e-543fa2b2, #w-node-_9789d220-49df-c4a0-145e-621bfad28c54-80354e43, #w-node-ba4829d1-0d57-474e-1928-9cb2c453d941-80354e43, #w-node-fdccd563-3734-67aa-e2ff-8e2c7837c034-80354e43 {
    justify-self: start;
  }
}

@media screen and (max-width: 991px) {
  #w-node-acca0d51-373d-7bac-6bf7-84fda576a7ae-543fa2b2 {
    place-self: auto;
  }

  #w-node-_762ad2ae-4c32-6733-73b6-9ead2d4774d4-543fa2b2 {
    justify-self: center;
  }

  #w-node-d0768438-5f19-faf5-0096-5783575d2c48-543fa2b2, #w-node-_40119897-7ab1-6e38-61be-72a2feb2cb7e-543fa2b2 {
    justify-self: start;
  }

  #w-node-_5e844b39-f90f-77c5-579d-e1730fced583-80354e43 {
    place-self: center;
  }

  #w-node-_9789d220-49df-c4a0-145e-621bfad28c54-80354e43 {
    justify-self: center;
  }

  #w-node-_0f464f58-eb72-5c83-f893-53cab0c709ee-80354e43 {
    place-self: auto;
  }
}

@media screen and (max-width: 767px) {
  #w-node-d3ad805f-4d82-e4aa-b97f-aa147f2f5dc8-26b2258c {
    justify-self: end;
  }

  #w-node-b31edf9a-0e7e-2466-130b-05d9a377ec29-80354e43 {
    justify-self: start;
  }

  #w-node-_5e844b39-f90f-77c5-579d-e1730fced583-80354e43 {
    place-self: auto;
  }
}

@media screen and (max-width: 479px) {
  #w-node-ff802ac3-e529-f713-f319-486a848a1252-26aa3308, #w-node-_8aa2fc57-4c4b-e19e-b175-1e37a3f82389-26aa3308 {
    place-self: center;
  }

  #w-node-_5e844b39-f90f-77c5-579d-e1730fced583-80354e43 {
    place-self: center;
  }

  #w-node-_99f167b8-dbd9-24d9-ea41-8b2b2e7aa1b2-80354e43 {
    justify-self: auto;
  }
}


