@font-face {
  font-family: Satoshi Variable;
  src: url('../fonts/Satoshi-Variable.ttf') format("truetype");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --text--primary: black;
  --stroke: #00000014;
  --text--white: white;
  --accent--main: #007668;
  --accent--light: #00b29e;
  --text--secondary: #6a6a6a;
  --cards-bg: #fafafa;
}

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

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

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

body {
  color: var(--text--primary);
  background-color: #101010;
  font-family: Satoshi Variable, Arial, sans-serif;
  font-size: .8em;
  line-height: 120%;
}

h1 {
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4.8em;
  font-weight: 400;
  line-height: 104%;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 42px;
  font-weight: 500;
  line-height: 120%;
}

p {
  margin-bottom: 0;
  font-size: 1.6em;
  font-weight: 400;
  line-height: 140%;
}

a {
  text-decoration: none;
}

.hero-section {
  background-color: var(--text--primary);
  background-image: url('../images/Background.webp');
  background-position: 0 0;
  background-size: auto;
  flex-flow: column;
  min-height: 100vh;
  padding-right: 0;
  display: flex;
  overflow: hidden;
}

.inner-container {
  max-width: 1320px;
  padding-left: 20px;
  padding-right: 20px;
}

.inner-container.hero {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.navbar {
  background-color: #ddd0;
  justify-content: space-around;
  align-items: center;
  min-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: fixed;
}

.navbar.black {
  z-index: 9999;
  transform-style: preserve-3d;
  display: flex;
  transform: translate3d(0, 0, 1px);
}

.navbar.white {
  z-index: 10000;
  opacity: 0;
  transform-style: preserve-3d;
  display: flex;
  transform: translate3d(0, 0, 1px);
}

.navbar-container {
  border: 1px solid var(--stroke);
  min-width: auto;
  max-width: 1280px;
  height: 71px;
  color: var(--text--white);
  background-color: #1c1c1c;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  display: flex;
  position: relative;
}

.navbar-container.white {
  background-color: #f3f3f3;
  border-color: #0000000a;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.logo-image {
  height: 18px;
}

.brand {
  z-index: 2;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  min-height: 100%;
  margin-left: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.nav-menu {
  grid-column-gap: 1.2em;
  grid-row-gap: 1.2em;
  justify-content: center;
  align-items: center;
  width: 45%;
  min-width: auto;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  inset: auto 0%;
}

.menu-frame {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  height: 35px;
  padding-top: 10px;
  padding-left: 12px;
  padding-right: 12px;
  display: flex;
  overflow: clip;
}

.nav-link {
  color: var(--text--white);
  padding: 0;
  font-size: 1.3em;
}

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

.nav-link.black {
  color: var(--text--primary);
}

.nav-link.black.w--current {
  text-decoration: none;
}

.inner-frame {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.main-cta {
  background-color: var(--accent--main);
  border-radius: .5em;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 12px 20px;
  font-size: 1.3em;
  transition: all .4s;
  display: flex;
}

.main-cta:hover {
  background-color: #039684;
}

.main-cta:active {
  opacity: .7;
}

.buttons-cta {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.secondary-cta {
  background-color: #2b2b2b;
  border-radius: .5em;
  height: 40px;
  padding: 12px 20px;
  font-size: 1.3em;
  transition: all .4s;
}

.secondary-cta:hover {
  background-color: #3b3b3b;
}

.secondary-cta:active {
  opacity: .7;
}

.secondary-cta.white {
  background-color: var(--stroke);
  color: var(--text--primary);
}

.secondary-cta.white:hover {
  background-color: #00000029;
}

.secondary-cta.white-navbar {
  background-color: var(--stroke);
  color: var(--text--primary);
}

.secondary-cta.white-navbar:hover {
  background-color: #00000029;
}

.hero-section-content {
  grid-row-gap: 32px;
  width: 100%;
  max-width: 80%;
  color: var(--text--white);
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 173px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  text-decoration: none;
  display: flex;
}

.hero-badge {
  grid-column-gap: 16px;
  background-color: #00201c;
  border: 1px solid #ffffff14;
  border-radius: 100px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding: 4px 20px 4px 4px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.badge {
  grid-column-gap: 6px;
  color: var(--accent--light);
  background-color: #ffffff14;
  border: 1px solid #000;
  border-radius: 100px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  padding: 12px 20px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.pulse-indicator-end {
  background-color: #00b29e38;
  border-radius: 50%;
  flex: none;
  width: 12px;
  height: 12px;
  position: relative;
}

.pulse-indicator-end:after {
  content: "";
  background-color: var(--accent--light);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  position: absolute;
  inset: 0;
  margin: auto;
}

.dm-sans {
  color: var(--accent--light);
  font-family: DM Serif Display, sans-serif;
  font-style: italic;
}

.reg-s {
  font-size: 1.2em;
  font-weight: 300;
}

.reg-s.white {
  color: var(--text--white);
}

.lable-text {
  -webkit-text-stroke-color: var(--accent--light);
  font-size: 1.3em;
  font-weight: 500;
}

.hero-image {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  margin-top: 72px;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.image {
  width: 107%;
  max-width: 107%;
  margin-bottom: -12px;
  margin-left: -4vw;
  margin-right: -4vw;
}

.section {
  background-color: var(--text--white);
  margin-bottom: 0;
  padding-top: 200px;
  padding-bottom: 200px;
}

.section._2nd {
  padding-top: 80px;
  padding-bottom: 0;
}

.section._1 {
  padding-top: 20px;
  padding-bottom: 0;
}

.section._2 {
  padding-bottom: 100px;
}

.header-content {
  grid-row-gap: 20px;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-top: 0;
  text-decoration: none;
  display: flex;
}

.header-content.left {
  text-align: left;
  justify-content: center;
  align-items: flex-start;
}

.header-content.left-sticky {
  text-align: left;
  justify-content: center;
  align-items: flex-start;
  position: sticky;
  top: 100px;
}

.tag {
  grid-column-gap: 8px;
  background-color: #fff;
  border-radius: 27px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  padding: 8px 16px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
  box-shadow: 0 -6px 6px #fff, 0 10px 10px #1c1c1c14, 0 2.28853px 2.28853px #1c1c1c05;
}

.tag._1 {
  box-shadow: 0 10px 10px #1c1c1c14, 0 2.28853px 2.28853px #1c1c1c05;
}

.frame-style {
  object-fit: contain;
  overflow: hidden;
}

.section-content {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-width: 100%;
  display: flex;
  position: relative;
}

.section-content.horizontal {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  text-align: left;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch stretch;
  display: grid;
}

._70 {
  max-width: 70%;
}

._70.secondary {
  color: var(--text--secondary);
}

.solutions-block {
  grid-row-gap: 40px;
  background-color: #fff;
  border: 1px solid #00000014;
  border-radius: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  min-height: 670px;
  padding: 60px 32px 32px;
  text-decoration: none;
  display: flex;
  position: sticky;
  top: 80px;
  box-shadow: 0 4px 21px #0000000d;
}

.solutions-block._1 {
  position: sticky;
  top: 80px;
}

.solutions-block._2 {
  z-index: 2;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  top: 0;
}

.cards-names {
  grid-row-gap: 8px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.cards-names._70 {
  max-width: 60%;
}

.section-title {
  text-align: center;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi Variable, Arial, sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 140%;
  text-decoration: none;
}

.all-cards {
  grid-row-gap: 20px;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  min-height: 100%;
  text-decoration: none;
  display: flex;
}

.container-4 {
  grid-column-gap: 20px;
  flex: 1;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.solution-card {
  background-color: #fafafa;
  border-radius: 16px;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.solution-card-box {
  grid-row-gap: 12px;
  background-color: var(--cards-bg);
  text-align: left;
  border-radius: 16px;
  flex-direction: column;
  flex: 0 auto;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 24px;
  text-decoration: none;
  display: flex;
}

.solution-card-box._1 {
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
}

.med-m {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 140%;
}

.med-m.white {
  color: var(--text--white);
}

.component-1 {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  background-color: #fff;
  background-image: linear-gradient(179.78deg, #1598894d, #b9f0ea4d);
  flex-flow: column;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-height: 275px;
  display: flex;
  overflow: hidden;
}

.component-1.tablet {
  display: none;
}

.component-1._1 {
  display: block;
  position: relative;
}

.flag-row {
  grid-column-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  width: 536px;
  text-decoration: none;
  display: flex;
}

.flag-box {
  grid-row-gap: 10px;
  background-color: #f5f5f5;
  border: 1px solid #00000014;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
  text-decoration: none;
  display: flex;
}

.um {
  object-fit: cover;
  overflow: hidden;
}

.solution-small-cards-row {
  grid-column-gap: 20px;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.icon-and-text {
  grid-column-gap: 12px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.feature-icon {
  color: #007668;
  flex: none;
  width: 20px;
  height: 21px;
  position: relative;
}

.feature-icon--order {
  border: 1.75px solid currentColor;
  border-radius: 4px;
}

.feature-icon--order:before, .feature-icon--order:after {
  content: "";
  background-color: currentColor;
  border-radius: 1px;
  position: absolute;
}

.feature-icon--order:before {
  width: 7px;
  height: 1.75px;
  top: 5px;
  left: 5px;
}

.feature-icon--order:after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  bottom: 4px;
  left: 6px;
}

.secondary {
  color: var(--text--secondary);
}

.flag-frame {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  flex: none;
  align-self: stretch;
  display: block;
}

.flags-row {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.flags-row._2 {
  box-sizing: content-box;
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.box-2-div {
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  min-width: 100%;
  min-height: 100%;
  display: flex;
  position: relative;
}

.box-2-image {
  margin-top: 0;
}

.lables-div {
  width: auto;
  min-width: 112%;
  height: 138px;
  margin-bottom: 0;
  margin-left: -5%;
  margin-right: auto;
  position: relative;
  left: auto;
  right: auto;
}

.lable-div {
  grid-column-gap: 8.54786px;
  background-color: #fff;
  border-radius: 128.218px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  text-decoration: none;
  display: flex;
  position: absolute;
  inset: 0% auto auto -5%;
  box-shadow: 0 3.41914px 17.9505px #0000000d;
}

.lable-div._2 {
  top: 19px;
  left: auto;
  right: 41%;
  transform: rotate(-2deg);
}

.lable-div._3 {
  top: 71px;
  left: 8px;
  transform: rotate(-9deg);
}

.lable-div._1 {
  top: 8%;
  left: 2%;
  transform: rotate(-22deg);
}

.lable-div._4 {
  top: 105px;
  left: 17%;
  right: auto;
  transform: rotate(10deg);
}

.lable-div._5 {
  top: 42px;
  left: 12%;
  transform: rotate(5deg);
}

.lable-div._6 {
  top: 73px;
  left: auto;
  right: 39%;
  transform: rotate(7deg);
}

.lable-div._7 {
  top: 46px;
  left: auto;
  right: 24%;
  transform: rotate(-14deg);
}

.lable-div._8 {
  top: 107px;
  left: auto;
  right: 24%;
  transform: rotate(-5deg);
}

.lable-div._10 {
  top: 22px;
  left: auto;
  right: 0%;
  transform: rotate(30deg);
}

.lable-div._11 {
  top: 71px;
  left: auto;
  right: 8%;
  transform: rotate(-12deg);
}

.text-3 {
  color: #000;
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 10px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
}

.icon-and-text-2 {
  grid-column-gap: 12px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.feature-icon--tickets:before, .feature-icon--tickets:after {
  content: "";
  border: 1.75px solid currentColor;
  border-radius: 3px;
  position: absolute;
}

.feature-icon--tickets:before {
  width: 14px;
  height: 17px;
  top: 1px;
  right: 0;
}

.feature-icon--tickets:after {
  width: 14px;
  height: 17px;
  bottom: 1px;
  left: 0;
  background: linear-gradient(currentColor, currentColor) 4px 5px / 7px 1.5px no-repeat, linear-gradient(currentColor, currentColor) 4px 9px / 5px 1.5px no-repeat;
}

.vertical-card {
  background-color: #fafafa;
  border-radius: 16px;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.component-5 {
  background-color: #fff;
  background-image: linear-gradient(179.81deg, #1598894d, #b9f0ea4d);
  min-height: 68%;
  overflow: hidden;
}

.mask-group {
  object-fit: contain;
  justify-content: center;
  align-items: center;
  width: 90%;
  min-height: 100%;
  text-decoration: none;
  display: flex;
}

.mask-group._2 {
  width: auto;
  height: 100%;
}

.blocks-div {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  max-width: 100%;
  display: flex;
}

.right-part {
  flex-flow: column;
  justify-content: space-between;
  display: flex;
}

.right-part._1 {
  padding-top: 80px;
  position: static;
  top: 100px;
}

.advantage-list {
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.container-5 {
  grid-column-gap: 16px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.frame-style-2 {
  grid-row-gap: 10px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 4px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.group {
  object-fit: contain;
  justify-content: center;
  align-items: center;
  width: 25.3356px;
  height: 25px;
  text-decoration: none;
  display: flex;
}

.container-6 {
  grid-row-gap: 8px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.visual {
  grid-column-gap: 10px;
  background-color: #b3e1dc78;
  border: 1px solid #00000014;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 620px;
  padding: clamp(24px, 3vw, 48px);
  text-decoration: none;
  display: flex;
}

.visual-image-wrapper {
  object-fit: contain;
  object-position: center;
  background-color: #000001;
  border-radius: 10.9662px;
  width: 100%;
  height: auto;
  padding: 0;
  text-decoration: none;
  display: block;
  overflow: hidden;
}

.educational-section {
  grid-row-gap: 60px;
  color: var(--text--white);
  background-color: #101010;
  background-image: url('../images/Background.webp');
  background-position: 0 0;
  background-size: auto;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 200px 80px;
  text-decoration: none;
}

.ellipse-1 {
  z-index: -2;
  object-fit: cover;
  object-position: 50% 0%;
  justify-content: center;
  align-items: center;
  width: 70%;
  max-width: 70%;
  text-decoration: none;
  display: flex;
  position: absolute;
  top: -11%;
  left: auto;
}

.educational-icon {
  grid-column-gap: 8px;
  color: var(--text--white);
  background-color: #00201c;
  border: 1px solid #ffffff14;
  border-radius: 100px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  text-decoration: none;
  display: flex;
}

.frame-style-3 {
  object-fit: cover;
  overflow: hidden;
}

.educational-content {
  -webkit-backdrop-filter: blur(21.8462px);
  backdrop-filter: blur(21.8462px);
  background-color: #ffffff05;
  border: 1.23077px solid #ffffff14;
  border-radius: 28.3077px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  min-width: 780px;
  min-height: 430px;
  padding: 7.38462px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.video-container {
  z-index: 2;
  background-color: var(--text--primary);
  border-radius: 24px;
  flex: 1;
  min-width: 100%;
  position: relative;
}

.educational-play-button {
  grid-column-gap: 9.55556px;
  background-color: #fff3;
  border-radius: 1911.11px;
  justify-content: center;
  align-items: center;
  width: 86px;
  height: 86px;
  padding-left: 10px;
  text-decoration: none;
  display: flex;
  position: absolute;
  top: auto;
  left: auto;
}

.polygon-1 {
  object-fit: cover;
}

.section---companies {
  grid-row-gap: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

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

.gradient {
  z-index: 10;
}

.gradient-block {
  background-image: linear-gradient(90deg, #00b29e00, #00b29e 50%, #00b29e00);
  min-width: 70%;
  max-width: 70%;
  height: 2px;
}

.logos-row {
  box-sizing: content-box;
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: row;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.logos-row._2 {
  margin-left: 80px;
}

.logo-rows {
  grid-column-gap: 54px;
  grid-row-gap: 54px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.logo-2-rows {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex: none;
  display: flex;
  position: relative;
}

.div-block {
  background-image: linear-gradient(90deg, #101010, #10101000 11% 89%, #101010);
  position: absolute;
  inset: 0%;
}

._70-opacity {
  opacity: .7;
}

.tag-2 {
  grid-column-gap: 12px;
  color: var(--text--white);
  background-color: #000;
  border-radius: 27px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  padding: 8px 16px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
  box-shadow: 0 -6px 6px #fff, 0 10px 10px #1c1c1c14, 0 2.28853px 2.28853px #1c1c1c05;
}

.frame-style-4 {
  object-fit: cover;
  overflow: hidden;
}

.pricing-plans {
  grid-column-gap: 20px;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.solution-content {
  grid-row-gap: 40px;
  background-color: #fafafa;
  border: 1px solid #00000014;
  border-radius: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 32px 20px 32px 32px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
  box-shadow: 0 -6px 6px #fff, 0 10px 10px #1c1c1c14, 0 2.28853px 2.28853px #1c1c1c08, 0 .602187px .602187px #1c1c1c03;
}

.plan-details {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.pricing-header {
  grid-row-gap: 8px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.solution-title {
  color: #007668;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi Variable, Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  text-decoration: none;
}

.plan-price {
  grid-column-gap: 20px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.solution-title-2 {
  color: #000;
  text-align: center;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi Variable, sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 140%;
  text-decoration: none;
}

.solution-title-3 {
  color: #6a6a6a;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  text-decoration: none;
}

.cta {
  grid-column-gap: 10px;
  white-space: nowrap;
  background-color: #007668;
  border-radius: 10px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  font-size: 1.3em;
  font-weight: 500;
  text-decoration: none;
  transition: all .4s;
  display: flex;
  box-shadow: 0 16px 15px #0000003d;
}

.cta:hover {
  box-shadow: none;
  background-color: #039684;
}

.cta:active {
  opacity: .7;
}

.plan-features {
  grid-row-gap: 12px;
  border: 0 solid #00000014;
  border-top-width: 1px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-top: 12px;
  text-decoration: none;
  display: flex;
}

.pricing-features {
  grid-row-gap: 12px;
  border: 0 solid #00000014;
  border-bottom-width: 1px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 12px;
  text-decoration: none;
  display: flex;
}

.check-item-text {
  grid-column-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.check-icon {
  object-fit: contain;
  border-radius: 9px;
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  overflow: hidden;
}

.text {
  color: #000;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi Variable, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  text-decoration: none;
}

.pricing-features-2 {
  grid-row-gap: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.check-item-text-2 {
  grid-column-gap: 12px;
  opacity: .4;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.solution-content-2 {
  grid-row-gap: 40px;
  background-color: #dbf1ef;
  border-radius: 16px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 750px;
  padding: 32px 20px 32px 32px;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 -6px 6px #fff, 0 10px 10px #1c1c1c14, 0 2.28853px 2.28853px #1c1c1c08, 0 .602187px .602187px #1c1c1c03;
}

.popular-tag {
  grid-column-gap: 10px;
  background-color: #00b29e;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding: 12px 80px;
  text-decoration: none;
  display: flex;
  position: absolute;
  inset: 4% -13% auto auto;
  transform: rotate(33deg);
}

.popular-text {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi Variable, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  text-decoration: none;
}

.testimonial-content {
  grid-row-gap: 24px;
  border-style: undefined;
  border-width: 1px 0 0;
  border-color: undefined;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 846px;
  padding-top: 0;
  text-decoration: none;
  display: flex;
}

.solution-content-3 {
  grid-column-gap: 40px;
  border: 1px solid var(--stroke);
  background-color: var(--cards-bg);
  border-radius: 16px;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  max-width: 846px;
  padding: 24px 20px 24px 24px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.add-on-details {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: auto;
  text-decoration: none;
  display: flex;
}

.solution-title-4 {
  color: #000;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  text-decoration: none;
}

.buttons {
  grid-column-gap: 12px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.pricing-features-3 {
  grid-row-gap: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.text-4 {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi Variable, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  text-decoration: none;
}

.solution-title-0 {
  color: #6a6a6a;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi Variable, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  text-decoration: line-through;
}

.solution-title-1 {
  color: #6a6a6a;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi Variable, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  text-decoration: none;
}

.solution-title-5 {
  color: #000;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi Variable, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  text-decoration: line-through;
}

.solution-title-6 {
  color: #000;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi Variable, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  text-decoration: none;
}

.text-span {
  color: var(--accent--main);
  font-weight: 600;
}

.cta-secondary {
  grid-column-gap: 10px;
  background-color: var(--text--white);
  color: var(--text--primary);
  white-space: nowrap;
  border-radius: 10px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  font-size: 1.3em;
  font-weight: 500;
  text-decoration: none;
  transition: all .4s;
  display: flex;
  box-shadow: 0 15px 16px #00000017;
}

.cta-secondary:hover {
  background-color: var(--stroke);
  box-shadow: none;
}

.cta-secondary:active {
  opacity: .7;
}

.accent-section {
  grid-row-gap: 60px;
  background-color: #fff;
  background-image: linear-gradient(179.86deg, #009c8a4d, #b9f0ea4d);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 120px 80px;
}

.content-cards {
  grid-column-gap: 12px;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.variant-1 {
  grid-column-gap: 12px;
  background-color: #fff;
  border: 0 solid #00000014;
  border-right-width: 1px;
  border-radius: 20px;
  justify-content: flex-end;
  align-items: stretch;
  width: 100%;
  padding: 20px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.container-7 {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding-top: 8px;
  text-decoration: none;
  display: flex;
}

.container-8 {
  grid-row-gap: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.text-5 {
  color: #1c1c1c;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi Variable, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  text-decoration: none;
}

.icon {
  grid-column-gap: 10px;
  width: 48px;
  min-width: 48px;
  height: 48px;
  min-height: 48px;
  color: var(--text--white);
  background-color: #007668;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 13px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
  box-shadow: 0 50px 30px #00000021, 0 27.4762px 16.4857px #00000021, 0 15.9566px 9.57398px #00000021, 0 9.74808px 5.84885px #00000021, 0 6.03627px 3.62176px #00000021, 0 3.63084px 2.1785px #00000021, 0 1.99048px 1.19429px #00000021, 0 .839802px .503881px #00000021, inset 0 0 20px #ffffff26;
}

.container-12 {
  grid-column-gap: 0px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.frame-style-5 {
  grid-row-gap: 10px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 4px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.group-2 {
  object-fit: contain;
  justify-content: center;
  align-items: center;
  width: 25px;
  min-width: 25px;
  height: 25px;
  min-height: 25px;
  text-decoration: none;
  display: flex;
}

.container-14 {
  grid-row-gap: 20px;
  text-align: center;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.solutions-table {
  border: 1px solid #00000014;
  border-radius: 12px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 -6px 6px #fff, 0 10px 10px #1c1c1c14, 0 2.28853px 2.28853px #1c1c1c08, 0 .602187px .602187px #1c1c1c03;
}

.rectangle-24 {
  z-index: 1;
  object-fit: cover;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 20%;
  height: 575px;
  text-decoration: none;
  display: block;
  position: absolute;
  top: .870117px;
  left: 20%;
}

.solutions-header {
  background-color: #00000014;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 64px;
  display: flex;
  overflow: hidden;
}

.feature-column {
  z-index: 2;
  grid-column-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 64px;
  padding: 10px 24px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.solution-title-8 {
  color: #fff;
  text-align: center;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi Variable, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  text-decoration: none;
}

.regular-package-column {
  grid-column-gap: 10px;
  border: 0 solid #00000014;
  border-right-width: 1px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 64px;
  padding: 10px 24px;
  text-decoration: none;
  display: flex;
}

.unit-number-row {
  border: 0 solid #00000014;
  border-top-width: 1px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 64px;
  display: flex;
  overflow: hidden;
}

.checkmarkcirclefill-1 {
  object-fit: cover;
  overflow: hidden;
}

.med-s {
  font-size: 1.3em;
  font-weight: 500;
}

.faqs-list {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  padding-top: 80px;
  display: flex;
}

.faq-item-faq-open {
  grid-row-gap: 16px;
  background-color: #fafafa;
  border-radius: 16px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  min-width: 100%;
  padding: 16px 18px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
  box-shadow: 0 -6px 6px #fff, 0 10px 10px #1c1c1c1f, 0 2.28853px 2.28853px #1c1c1c08, 0 .602187px .602187px #1c1c1c03;
}

.question {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0;
  text-decoration: none;
  display: flex;
}

.icon-wrapper {
  background-color: #007668;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 25px;
  min-width: 25px;
  height: 25px;
  min-height: 25px;
  display: flex;
}

.answear {
  position: static;
}

.answear.w--open {
  background-color: #ddd0;
}

.frame-1984077947 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.container {
  grid-column-gap: 10px;
  border: 0 solid #00000014;
  border-right-width: 1px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  padding-right: 20px;
  text-decoration: none;
  display: flex;
}

.container-15 {
  grid-column-gap: 8.54786px;
  background-color: #fafafa;
  border: .854786px solid #00000014;
  border-radius: 128.218px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding: 8px 14px;
  text-decoration: none;
  display: flex;
}

.icon-2 {
  object-fit: cover;
}

.title-style {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi Variable, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  text-decoration: none;
}

.logosshopify {
  object-fit: cover;
  overflow: hidden;
}

.container-16 {
  grid-column-gap: 8px;
  justify-content: flex-end;
  align-items: center;
  width: auto;
  text-decoration: none;
  display: flex;
}

.container-17 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  white-space: nowrap;
  background-color: #fafafa;
  border: .854786px solid #00000014;
  border-radius: 128.218px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  height: 36.9553px;
  padding: 8px 14px;
  text-decoration: none;
  display: flex;
}

.container-18 {
  grid-column-gap: 20px;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.variant-2 {
  grid-column-gap: 20px;
  background-color: #dbf1ef;
  border: 1px solid #00000014;
  border-radius: 20px;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  padding: 20px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.container-19 {
  grid-row-gap: 14px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.heading-4-cinematic-video-tours {
  color: #007668;
  letter-spacing: -.02em;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi Variable, sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 140%;
  text-decoration: none;
}

.container-20 {
  grid-row-gap: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.check-item-text-3 {
  grid-column-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.text-6 {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi Variable, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  text-decoration: none;
}

.cta-2 {
  grid-column-gap: 10px;
  background-color: #007668;
  border-radius: 10px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  text-decoration: none;
  display: flex;
}

.text-7 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi Variable, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  text-decoration: none;
}

.variant-3 {
  grid-column-gap: 20px;
  background-color: #fafafa;
  border: 1px solid #00000014;
  border-radius: 20px;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  padding: 20px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.link---secondary {
  grid-column-gap: 10px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 12px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
  box-shadow: 0 -6px 6px #fff, 0 10px 10px #1c1c1c1f, 0 2.28853px 2.28853px #1c1c1c08, 0 .602187px .602187px #1c1c1c03;
}

.secondary-button {
  color: #1c1c1c;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi Variable, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  text-decoration: none;
}

.reg-m {
  font-size: 1.1em;
  font-weight: 500;
}

.reg-m.white {
  color: var(--text--white);
}

.footer {
  grid-row-gap: 60px;
  background-color: #101010;
  background-image: url('../images/Background.webp');
  background-position: 0 0;
  background-size: auto;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 60px;
  padding-left: 80px;
  padding-right: 80px;
}

.top-row {
  width: 100%;
  color: var(--text--white);
  justify-content: space-between;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
  position: relative;
}

.certification-list {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 84px;
  text-decoration: none;
  display: flex;
}

.header-logo {
  grid-row-gap: 6.0625px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 9.7px;
  padding-bottom: 9.7px;
  text-decoration: none;
  display: flex;
}

.logo {
  object-fit: cover;
}

.copyright {
  color: var(--text--white);
  text-underline-offset: 4px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi Variable, Arial, sans-serif;
  font-size: 1.2em;
  font-weight: 300;
  line-height: 140%;
  text-decoration: underline;
  transition: all .4s;
}

.copyright:hover {
  opacity: .7;
}

.social-links {
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  height: 84px;
  text-decoration: none;
  display: flex;
}

.social-icons {
  grid-column-gap: 8px;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.link---social {
  grid-column-gap: 10px;
  background-color: #007668;
  border-radius: 8px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  padding: 12px;
  text-decoration: none;
  transition: all .4s;
  display: flex;
  overflow: hidden;
}

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

._4033599021 {
  overflow: hidden;
}

.ulibokj1x {
  border-style: solid;
  border-width: undefinedpx;
  object-fit: cover;
  border-color: #fff;
}

.phinstagram-logo-light {
  object-fit: cover;
  overflow: hidden;
}

.menu {
  grid-column-gap: 32px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  display: flex;
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
}

.menu-item {
  padding: 8px;
  overflow: hidden;
}

.frame-44402 {
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.cosmo {
  opacity: .44;
  -webkit-backdrop-filter: blur(52.3px);
  backdrop-filter: blur(52.3px);
  object-fit: cover;
}

.footer-link {
  color: var(--text--white);
  padding: 0;
  font-size: 1.3em;
  transition: all .4s;
}

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

.footer-link.black {
  color: var(--text--primary);
}

.socials {
  height: 18px;
}

.cosmo-image {
  width: 108%;
  min-width: 108%;
  max-width: 108%;
  margin-top: -5%;
  margin-left: -20px;
  margin-right: -20px;
  padding-left: 0;
}

.content-cards-div {
  grid-column-gap: 12px;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.illustration-image {
  max-height: 100%;
}

.solution-wrapper {
  min-width: 100%;
}

.frame-1984077919 {
  grid-row-gap: 4px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.frame-1984077915 {
  grid-column-gap: 7.56651px;
  background-color: #fff;
  border-radius: 5.50292px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 5.50292px;
  text-decoration: none;
  display: flex;
}

.ellipse-4 {
  background-color: #d9d9d9;
  background-image: url('../images/');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 41.027px;
}

.skill-iconsinstagram {
  grid-column-gap: 4.08784px;
  background-color: #fff;
  border-radius: 8.58446px;
  justify-content: center;
  align-items: center;
  width: 13.0811px;
  height: 13.0811px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
  box-shadow: 0 1.63514px 8.58446px #0000000d;
}

.group-3 {
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 6.54054px;
  height: 6.54054px;
  text-decoration: none;
  display: flex;
}

.frame-1984077913 {
  grid-row-gap: 5.35135px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.frame-1984077916 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.feature-title {
  color: #000;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 10px;
  font-weight: 500;
  line-height: 140%;
  text-decoration: none;
}

.feature-title-2 {
  color: #6a6a6a;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 8px;
  font-weight: 400;
  line-height: 140%;
  text-decoration: none;
}

.frame-1984077912 {
  grid-row-gap: 3.43932px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.rectangle-15 {
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 171.401px;
  height: 6.19078px;
  text-decoration: none;
  display: flex;
}

.ellipse-5 {
  background-color: #d9d9d9;
  background-image: url('../images/');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 41.027px;
}

.logoswhatsapp-icon {
  object-fit: cover;
  overflow: hidden;
}

.ellipse-6 {
  background-color: #d9d9d9;
  background-image: url('../images/');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 41.027px;
}

.ellipse-7 {
  background-color: #d9d9d9;
  background-image: url('../images/');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 41.027px;
}

.ellipse-8 {
  background-color: #d9d9d9;
  background-image: url('../images/');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 41.027px;
}

.msgs-div {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  min-width: 100%;
  display: flex;
}

.gradient-green-block {
  background-image: linear-gradient(#c2e0dc 5%, #c2e0dc00 20%, #ebfaf900 80%, #ebfaf9 95%);
  position: absolute;
  inset: 0%;
}

.routing-div {
  flex-flow: column;
  min-width: 100%;
  min-height: 100%;
  display: flex;
}

.container-21 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  text-decoration: none;
  display: flex;
}

.component-4 {
  grid-column-gap: 4px;
  background-color: #fff;
  border-radius: 128.218px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 6px 7px;
  text-decoration: none;
  display: flex;
  box-shadow: 0 3.41914px 17.9505px #0000000d;
}

.frame-style-7 {
  opacity: 1;
  object-fit: cover;
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  overflow: hidden;
}

.text-8 {
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 11px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
}

.component-6 {
  grid-column-gap: 4px;
  opacity: .6;
  background-color: #fff;
  border-radius: 128.218px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  height: 22.85px;
  padding: 6px 7px;
  text-decoration: none;
  display: flex;
  box-shadow: 0 3.41914px 17.9505px #0000000d;
}

.container-22 {
  grid-column-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 276px;
  text-decoration: none;
  display: flex;
}

.component-7 {
  grid-column-gap: 8.54786px;
  opacity: 1;
  white-space: nowrap;
  background-color: #fff;
  border-radius: 128.218px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 26.5px;
  padding: 6.83828px 10.2574px;
  display: flex;
  box-shadow: 0 3.41914px 17.9505px #0000000d;
}

.text-9 {
  color: #000;
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 10px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
}

.chart {
  background-color: #fff;
  background-image: linear-gradient(179.81deg, #1598894d, #b9f0ea4d);
  justify-content: flex-start;
  align-items: center;
  height: 67%;
  min-height: 70%;
  max-height: 70%;
  padding-left: 3%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.chart._2 {
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: auto;
  max-height: none;
  position: absolute;
  inset: 0%;
}

.chart._3 {
  justify-content: center;
  align-items: center;
}

.chart._4 {
  padding-left: 0%;
}

.graphs {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  grid-template-rows: auto;
  grid-template-columns: auto auto auto auto;
  grid-auto-columns: 1fr;
  place-items: end stretch;
  min-width: 78%;
  max-width: 78%;
  height: 70%;
  display: grid;
  position: absolute;
  bottom: 20%;
  right: 7%;
}

.rectangle-19 {
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 76px;
  height: 100%;
  text-decoration: none;
  display: flex;
}

.chart-box {
  background-image: linear-gradient(#075e544d, #00a18e54);
  border-radius: 8px;
  width: auto;
  height: 90%;
}

.chart-box._3 {
  background-image: linear-gradient(#075e54, #00a18e);
  height: 100%;
}

.chart-box._1 {
  height: 80%;
  max-height: 80%;
}

.chart-box._2 {
  height: 67%;
}

.circle {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.arrows {
  object-fit: contain;
  width: 100%;
  height: 100%;
  position: absolute;
}

.info {
  object-fit: contain;
  width: 40%;
  height: auto;
  position: absolute;
  bottom: 35%;
}

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

  h2 {
    font-size: 32px;
  }

  .hero-section {
    overflow: hidden;
  }

  .inner-container {
    min-width: 100%;
    max-width: none;
  }

  .inner-container._1 {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-section-content {
    max-width: none;
    margin-top: 120px;
  }

  .reg-s {
    font-size: 1.1em;
  }

  .lable-text {
    font-size: 1em;
  }

  .hero-image {
    margin-top: 36px;
    overflow: hidden;
  }

  .image {
    margin-bottom: -40px;
    overflow: hidden;
  }

  .section {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .header-content, .header-content.left {
    grid-row-gap: 16px;
  }

  .header-content._70 {
    grid-row-gap: 16px;
    max-width: none;
  }

  .header-content.left-sticky {
    position: static;
  }

  .tag {
    justify-content: center;
    align-items: center;
  }

  .section-content {
    grid-column-gap: 36px;
    grid-row-gap: 36px;
  }

  .section-content.horizontal {
    grid-column-gap: 36px;
    grid-row-gap: 36px;
    flex-flow: column;
    display: flex;
  }

  ._70.secondary {
    max-width: none;
    font-size: 1.2em;
  }

  .solutions-block {
    grid-row-gap: 28px;
    min-height: auto;
    padding: 28px;
    position: static;
  }

  .solutions-block._1 {
    grid-row-gap: 28px;
    padding: 28px;
    position: static;
  }

  .solutions-block._2 {
    min-height: auto;
  }

  .cards-names {
    grid-row-gap: 4px;
  }

  .section-title {
    font-size: 24px;
  }

  .all-cards {
    grid-row-gap: 12px;
  }

  .container-4 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: row;
    flex: 0 auto;
  }

  .container-4._1 {
    flex-flow: row;
  }

  .solution-card-box {
    grid-row-gap: 8px;
    padding: 20px;
  }

  .med-m {
    font-size: 1.3em;
  }

  .component-1 {
    display: none;
  }

  .component-1.tablet {
    display: flex;
  }

  .component-1._1 {
    display: none;
  }

  .solution-small-cards-row {
    grid-column-gap: 12px;
  }

  .icon-and-text {
    grid-row-gap: 8px;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
  }

  .secondary {
    font-size: 1.2em;
  }

  .icon-and-text-2 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .vertical-card {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .component-5 {
    height: 200px;
    min-height: auto;
    display: none;
  }

  .mask-group {
    height: auto;
  }

  .right-part {
    grid-column-gap: 36px;
    grid-row-gap: 36px;
  }

  .right-part._1 {
    padding-top: 0;
  }

  .advantage-list {
    grid-row-gap: 8px;
  }

  .container-5 {
    grid-column-gap: 8px;
  }

  .group {
    width: 18px;
    height: 18px;
  }

  .visual {
    max-width: none;
  }

  .visual-image-wrapper {
    object-position: center;
  }

  .educational-section {
    padding: 120px 0;
  }

  .educational-content {
    min-width: 100%;
    min-height: 400px;
  }

  .section---companies {
    grid-row-gap: 24px;
  }

  .logos-row {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .logos-row._2 {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    margin-left: 60px;
  }

  .logo-rows {
    max-width: 100%;
  }

  ._70-opacity {
    font-size: 1.4em;
  }

  .frame-style-4 {
    width: 12px;
    min-width: 12px;
    height: 12px;
    min-height: 12px;
  }

  .pricing-plans {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
  }

  .solution-content {
    grid-row-gap: 28px;
    align-items: stretch;
    padding: 20px;
  }

  .plan-details {
    flex-flow: row;
    justify-content: space-between;
  }

  .plan-details._1 {
    flex-flow: column;
    min-width: 80%;
    max-width: 80%;
  }

  .pricing-header {
    grid-row-gap: 3px;
  }

  .cta {
    font-size: 1.1em;
  }

  .check-item-text {
    grid-column-gap: 8px;
  }

  .check-icon {
    width: 16px;
    min-width: 16px;
    height: 16px;
    min-height: 16px;
  }

  .text {
    font-size: 14px;
  }

  .solution-content-2 {
    grid-row-gap: 28px;
    height: auto;
    padding: 20px;
  }

  .popular-tag {
    top: 3%;
    right: -9%;
  }

  .popular-text {
    font-size: 14px;
  }

  .solution-content-3 {
    max-width: none;
    padding: 20px;
  }

  .buttons {
    grid-column-gap: 8px;
  }

  .cta-secondary {
    font-size: 1.1em;
  }

  .accent-section {
    padding-left: 0;
    padding-right: 0;
  }

  .content-cards {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
  }

  .container-7 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    padding-top: 0;
  }

  .icon {
    width: 32px;
    min-width: 32px;
    height: 32px;
    min-height: 32px;
  }

  .container-12 {
    grid-column-gap: 0px;
    grid-row-gap: 20px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .group-2 {
    width: 18px;
    min-width: 18px;
    height: 18px;
    min-height: 18px;
  }

  .container-14 {
    grid-row-gap: 12px;
  }

  .solutions-table {
    min-width: 800px;
  }

  .rectangle-24 {
    z-index: 1;
    left: 21%;
  }

  .feature-column {
    z-index: 2;
    position: relative;
  }

  .med-s {
    font-size: 1.2em;
    line-height: 120%;
  }

  .faqs-list {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    padding-top: 0;
  }

  .frame-1984077947 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: column;
  }

  .container {
    border-style: none;
    border-width: 1px;
    justify-content: center;
    align-items: center;
  }

  .container-16 {
    justify-content: center;
    align-items: center;
  }

  .container-18 {
    grid-column-gap: 12px;
  }

  .variant-2 {
    grid-row-gap: 20px;
    flex-flow: column;
    padding: 16px;
  }

  .container-20 {
    grid-row-gap: 8px;
  }

  .check-item-text-3 {
    grid-column-gap: 8px;
    justify-content: flex-start;
    align-items: center;
  }

  .text-6 {
    font-size: 12px;
  }

  .variant-3 {
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: space-between;
  }

  .footer {
    padding-top: 40px;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
  }

  .top-row {
    flex-flow: row;
    align-items: stretch;
  }

  .certification-list {
    height: auto;
  }

  .copyright {
    font-size: 14px;
  }

  .social-links {
    justify-content: space-between;
    height: auto;
  }

  .menu {
    grid-row-gap: 32px;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    margin-left: 0;
    margin-right: 0;
    position: static;
  }

  .footer-link {
    font-size: 14px;
  }

  .menu-button, .icon-3 {
    display: none;
  }

  .heading {
    font-size: 32px;
  }

  .content-cards-div {
    grid-row-gap: 12px;
    flex-flow: column;
  }

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

  .solution-wrapper {
    justify-content: flex-start;
    align-items: center;
    min-width: 100%;
    max-width: 100%;
    padding-bottom: 12px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    overflow: auto;
  }

  .chart {
    height: 200px;
    min-height: auto;
    display: none;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  p {
    font-size: 16px;
  }

  .hero-section {
    min-height: auto;
  }

  .inner-container._1 {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-section-content {
    grid-row-gap: 28px;
  }

  .lable-text {
    font-size: 12px;
  }

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

  .section._2 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .header-content, .header-content.left, .header-content._70 {
    grid-row-gap: 12px;
  }

  .header-content._1 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-content, .section-content.horizontal {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
  }

  ._70.secondary {
    font-size: 14px;
  }

  .solutions-block, .solutions-block._1 {
    grid-row-gap: 16px;
    padding: 16px;
  }

  .section-title {
    font-size: 20px;
  }

  .container-4 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: column;
  }

  .container-4._1 {
    flex-flow: column;
  }

  .solution-card {
    height: auto;
  }

  .solution-card-box {
    padding: 16px;
  }

  .med-m {
    font-size: 16px;
  }

  .solution-small-cards-row {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: column;
  }

  .icon-and-text {
    grid-column-gap: 8px;
    flex-flow: row;
    justify-content: center;
    align-items: center;
  }

  .secondary {
    font-size: 14px;
  }

  .vertical-card {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .blocks-div {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .right-part {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
  }

  .visual {
    height: auto;
    padding: 24px;
  }

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

  .ellipse-1 {
    top: -8%;
  }

  .educational-content {
    min-height: 280px;
  }

  .section---companies {
    margin-top: 8px;
  }

  ._70-opacity {
    font-size: 14px;
  }

  .solution-content, .plan-details._1 {
    grid-row-gap: 12px;
  }

  .pricing-header {
    grid-row-gap: 4px;
    text-align: left;
  }

  .solution-title {
    font-size: 16px;
  }

  .plan-price {
    grid-column-gap: 12px;
  }

  .solution-title-2 {
    font-size: 24px;
  }

  .check-item-text {
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
  }

  .text {
    font-size: 12px;
  }

  .check-item-text-2 {
    grid-column-gap: 8px;
  }

  .solution-content-2 {
    grid-row-gap: 12px;
  }

  .popular-tag {
    right: -13%;
  }

  .testimonial-content {
    grid-row-gap: 12px;
  }

  .solution-content-3 {
    grid-row-gap: 28px;
    flex-flow: column;
  }

  .add-on-details {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .buttons {
    grid-row-gap: 8px;
    flex-flow: column;
  }

  .buttons._1 {
    flex-flow: row;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .cta-secondary._1 {
    margin-top: 12px;
  }

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

  .variant-1 {
    padding: 16px;
  }

  .container-8 {
    grid-row-gap: 8px;
  }

  .container-12 {
    grid-row-gap: 8px;
    flex-flow: column;
    display: flex;
  }

  .frame-style-5 {
    padding-top: 0;
  }

  .container-14 {
    grid-column-gap: 8px;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
  }

  .solutions-table {
    min-width: 800px;
  }

  .rectangle-24 {
    z-index: 1;
    max-width: 21.5%;
    left: 21.5%;
  }

  .feature-column {
    z-index: 2;
    position: relative;
  }

  .regular-package-column {
    padding: 8px 12px;
  }

  .container-18 {
    grid-row-gap: 8px;
    flex-flow: column;
  }

  .variant-3 {
    padding: 16px;
  }

  .top-row {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .certification-list, .social-links {
    flex-flow: row;
  }

  .social-icons {
    justify-content: flex-start;
    align-items: center;
    width: auto;
  }

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

  .content-cards-div {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .solution-wrapper {
    justify-content: flex-start;
    align-items: center;
    max-width: 100%;
    padding-bottom: 12px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    overflow: auto;
  }

  .heading-2 {
    font-size: 32px;
    line-height: 130%;
  }
}

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

  p {
    font-size: 14px;
  }

  .inner-container, .navbar.black, .navbar.white {
    padding-left: 16px;
    padding-right: 16px;
  }

  .navbar-container, .navbar-container.white {
    padding: 8px 12px;
  }

  .logo-image {
    object-fit: contain;
    max-width: none;
    height: 18px;
  }

  .buttons-cta {
    flex-flow: column;
    align-items: stretch;
  }

  .buttons-cta.hero {
    min-width: 100%;
  }

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

  .secondary-cta.white, .secondary-cta.white-navbar, .secondary-cta.navbar, .secondary-cta.navbar-copy {
    display: none;
  }

  .hero-section-content {
    margin-top: 120px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-badge {
    grid-column-gap: 12px;
    grid-row-gap: 4px;
    background-color: #00201c00;
    border-style: none;
    flex-flow: column;
    max-width: 100%;
    padding: 0 15vw;
    overflow: visible;
  }

  .badge {
    width: auto;
    padding: 8px 12px;
    overflow: visible;
  }

  .pulse-indicator-end {
    min-width: 12px;
  }

  .image {
    width: 131%;
    max-width: 131%;
    margin-bottom: 0;
    margin-left: -12vw;
    margin-right: -12vw;
  }

  .header-content.left {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .solutions-block, .solutions-block._1 {
    padding: 16px 8px 8px;
  }

  .solution-card {
    flex-flow: column;
  }

  .vertical-card {
    flex-flow: column;
    display: flex;
  }

  .container-5 {
    grid-row-gap: 8px;
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .container-6 {
    justify-content: center;
    align-items: center;
  }

  .educational-content {
    border-radius: 12px;
    min-height: 49vw;
    padding: 4px;
  }

  .video-container {
    border-radius: 8px;
  }

  .educational-play-button {
    width: 40px;
    height: 40px;
    padding-left: 4px;
  }

  .polygon-1 {
    width: 16px;
    height: 16px;
  }

  .logos-row {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .logos-row._2 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-left: 20px;
  }

  .tag-2 {
    flex-flow: column;
    padding-left: 20px;
    padding-right: 20px;
  }

  .frame-style-4 {
    height: 16px;
  }

  .solution-content {
    padding: 16px;
  }

  .plan-details {
    grid-row-gap: 12px;
    flex-flow: column;
    align-items: stretch;
  }

  .pricing-header {
    grid-row-gap: 0px;
  }

  .check-item-text.card {
    grid-row-gap: 4px;
    flex-flow: column;
    align-items: stretch;
  }

  .solution-content-2 {
    padding: 16px;
  }

  .popular-tag {
    top: 3%;
    right: -20%;
  }

  .popular-text {
    font-size: 12px;
  }

  .solution-content-3 {
    padding: 16px;
  }

  .add-on-details {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .solutions-table {
    min-width: 620px;
  }

  .rectangle-24 {
    max-width: 20%;
    height: 100%;
    left: 19.5%;
  }

  .feature-column {
    padding: 8px 12px;
  }

  .checkmarkcirclefill-1 {
    width: 16px;
    min-width: 16px;
    height: 16px;
    min-height: 16px;
  }

  .med-s {
    font-size: 14px;
  }

  .container {
    grid-column-gap: 8px;
  }

  .container-16 {
    grid-row-gap: 8px;
    flex-flow: wrap;
  }

  .top-row {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
  }

  .certification-list {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    text-align: right;
  }

  .menu {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .solution-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }

  .text-span-2 {
    white-space: nowrap;
  }
}


@font-face {
  font-family: 'Satoshi Variable';
  src: url('../fonts/Satoshi-Variable.ttf') format('truetype');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
