/*	Defined widths
--------------------------------------- */
/*	Slider settings
--------------------------------------- */
/*	Colors
--------------------------------------- */
/*	Breakpoints
--------------------------------------- */
/*	Other
--------------------------------------- */
/* common border radius */
/* disable text selection */
/*	Font / Text Mixins
======================================================================== */
/*	Font family mixin
    Examples:
    @include f(s,r);
    @include f(gs,l);
--------------------------------------- */
/*	Text mixin
    (dynamic font size and line height)
--------------------------------------- */
.hero-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  background: var(--Primary-Dark, #0b2d34);
}
.hero-section__content {
  width: 100%;
  max-width: 113.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5.6rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  padding-block: 7rem;
}
@media screen and (max-width: 1050px) {
  .hero-section__content {
    gap: 0.5rem;
  }
}
@media screen and (max-width: 820px) {
  .hero-section__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
    padding-block: 2.5rem;
  }
}
@media screen and (max-width: 440px) {
  .hero-section__content {
    gap: 1rem;
  }
}
.hero-section__content .col-left {
  width: 100%;
  max-width: 64rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.8rem;
}
@media screen and (max-width: 820px) {
  .hero-section__content .col-left {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}
.hero-section__content .col-left__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 3.2rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
@media screen and (max-width: 820px) {
  .hero-section__content .col-left__text {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.hero-section__content .col-left__text h1 {
  letter-spacing: -0.24rem;
  color: var(--Green-100, #e0fae4);
}
.hero-section__content .col-left__text h1 span {
  color: var(--Primary-Dark, #0b2d34);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--Green-100, #e0fae4);
}
.hero-section__content .col-left__text .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
}
.hero-section__content .col-left__button > .btn {
  text-transform: uppercase;
  cursor: default;
}
.hero-section__content .col-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.hero-section__content .col-right__image {
  width: 100%;
  max-width: 53.1963rem;
  height: 31.5603rem;
}
.hero-section__content .col-right__image svg {
  width: 100%;
  max-width: 53.1963rem;
  height: 31.5603rem;
}

.polygon {
  width: 100%;
  background: var(--Cool-grey-Cool-grey-100, #f2f4f8);
}
.polygon svg {
  width: 100%;
  fill: var(--Primary-Dark, #0b2d34);
  stroke-width: 2px;
  stroke: var(--Primary-Dark, #0b2d34);
}

.benefits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4rem;
  background: var(--White, #fff);
}
.benefits__content {
  width: 100%;
  max-width: 113.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4rem;
}
.benefits__content-title {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.4rem;
}
.benefits__content-title .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 3.2rem;
  height: 3.2rem;
}
.benefits__content-title .icon svg {
  width: 100%;
  max-width: 1.8667rem;
  height: 1.8667rem;
}
.benefits__content-title .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 0.8rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
}
.benefits__content-title .header .display-sm {
  letter-spacing: -0.16rem;
}
.benefits__content-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.6rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
.benefits__content-cards .cards__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.6rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
@media screen and (max-width: 820px) {
  .benefits__content-cards .cards__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.benefits__content-cards .cards__content .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 3.2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 3.2rem;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 30rem;
  border-radius: 2.4rem;
  background: var(--Primary-Dark, #0b2d34);
}
@media screen and (max-width: 820px) {
  .benefits__content-cards .cards__content .card {
    max-width: 50%;
  }
}
@media screen and (max-width: 590px) {
  .benefits__content-cards .cards__content .card {
    max-width: 80%;
  }
}
.benefits__content-cards .cards__content .card__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.8rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  border-radius: 1.2rem;
  border: 1px solid var(--Green-100, #e0fae4);
  background: rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: 0px 4px 6px 0px #082228, 3px 3px 3px 0px rgba(221, 225, 230, 0.24) inset;
          box-shadow: 0px 4px 6px 0px #082228, 3px 3px 3px 0px rgba(221, 225, 230, 0.24) inset;
}
.benefits__content-cards .cards__content .card__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.2rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  color: var(--Green-100, #e0fae4);
}
.benefits__content-cards .cards__content .card__text .desc p {
  /*	1) Headlines text group
  --------------------------------------- */
  font-size: 14px;
  line-height: 1.4285714286;
  font-family: "Geist", sans-serif;
  font-weight: 400;
}

.our-soutions {
  background: var(--Cool-grey-Cool-grey-100, #f2f4f8);
}
.our-soutions__content {
  width: 100%;
  max-width: 113.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 11.2rem;
}
@media screen and (max-width: 1050px) {
  .our-soutions__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5rem;
  }
}
.our-soutions__content .col-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 27.2rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.4rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.our-soutions__content .col-left .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 3.2rem;
  height: 3.2rem;
}
.our-soutions__content .col-left .icon svg {
  width: 100%;
  max-width: 1.8667rem;
  height: 1.8667rem;
}
.our-soutions__content .col-left__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 0.8rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}
.our-soutions__content .col-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  gap: 1.6rem;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1050px) {
  .our-soutions__content .col-right {
    -ms-flex-item-align: center;
        align-self: center;
  }
}
.our-soutions__content .col-right__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 75.2rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  gap: 1.6rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1050px) {
  .our-soutions__content .col-right__cards {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.our-soutions__content .col-right__cards .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 36.8rem;
  padding: 16rem 3.2rem 3.2rem 3.2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 3.2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 1.2rem;
  background-blend-mode: screen, normal, normal, normal;
}
.our-soutions__content .col-right__cards .card__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.2rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
.our-soutions__content .col-right__cards .card__desc p {
  /*	1) Headlines text group
  --------------------------------------- */
  font-size: 14px;
  line-height: 1.4285714286;
  font-family: "Geist", sans-serif;
  font-weight: 400;
}

.solutions {
  background: var(--Cool-grey-Cool-grey-100, #f2f4f8);
}
.solutions__content {
  width: 100%;
  max-width: 113.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
}
.solutions__content-title {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.4rem;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}
.solutions__content-title .header {
  max-width: 25rem;
}
.solutions__content-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.6rem;
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.solutions__content-cards .tab-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
@media screen and (max-width: 400px) {
  .solutions__content-cards .tab-item {
    width: 100%;
  }
}
.solutions__content-cards .tab-item .tab {
  padding: 2.4rem;
  border-radius: 0.8rem;
  background-color: #fff;
  cursor: pointer;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  /*	1) Headlines text group
  --------------------------------------- */
  font-size: calc(var(--fs-small-rate) * 2.4rem);
  /*	2) Display text group
  --------------------------------------- */
  line-height: 1.2916666667;
  font-family: "Geist", sans-serif;
  font-weight: 600;
}
@media (max-width: 768px) {
  .solutions__content-cards .tab-item .tab {
    padding: 1.6rem;
    /*	1) Headlines text group
    --------------------------------------- */
    font-size: calc(var(--fs-small-rate) * 2rem);
    line-height: 1.3;
  }
}
.solutions__content-cards .tab-item .tab svg {
  width: 2.5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.solutions__content-cards .tab-item .tab.active {
  -webkit-box-shadow: inset 0 0 0 0.15rem var(--Primary-green);
          box-shadow: inset 0 0 0 0.15rem var(--Primary-green);
}
.solutions__content-cards .tab-item .tab.active svg {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.solutions__content-cards .tab-item .tab:hover {
  -webkit-box-shadow: inset 0 0 0 0.15rem var(--Primary-green);
          box-shadow: inset 0 0 0 0.15rem var(--Primary-green);
}
.solutions__content-cards .tab-item .card {
  display: none;
}
.solutions__content-cards > .card.is-expanded {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-ordinal-group: initial;
      -ms-flex-order: initial;
          order: initial;
  -webkit-animation: fadeIn 0.4s ease-out;
          animation: fadeIn 0.4s ease-out;
}
.solutions__content-cards > .card.is-expanded .card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.6rem;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: var(--White, #fff);
  border-radius: 1.6rem;
  gap: 2rem;
}
@media (max-width: 768px) {
  .solutions__content-cards > .card.is-expanded .card__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.solutions__content-cards > .card.is-expanded .card__content .col-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 56.8rem;
  padding: 6.4rem 8rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.6rem;
  background: var(--White, #fff);
}
@media screen and (max-width: 870px) {
  .solutions__content-cards > .card.is-expanded .card__content .col-left {
    max-width: 45rem;
    padding: 4.4rem 6rem;
  }
}
@media (max-width: 768px) {
  .solutions__content-cards > .card.is-expanded .card__content .col-left {
    padding: 2.4rem;
  }
}
.solutions__content-cards > .card.is-expanded .card__content .col-left__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.2rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  text-align: center;
}
.solutions__content-cards > .card.is-expanded .card__content .col-left__text-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  text-align: center;
}
@media (max-width: 768px) {
  .solutions__content-cards > .card.is-expanded .card__content .col-right {
    width: 100%;
  }
}
.solutions__content-cards > .card.is-expanded .card__content .col-right figure {
  width: 100%;
  max-width: 53.6rem;
  height: 100%;
}
@media (max-width: 768px) {
  .solutions__content-cards > .card.is-expanded .card__content .col-right figure {
    height: 30rem;
    max-width: 100%;
  }
}
.solutions__content-cards > .card.is-expanded .card__content .col-right figure img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.2rem;
  height: 100%;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.technology {
  position: relative;
  background: var(--Primary-Dark, #0b2d34);
}
.technology__content {
  width: 100%;
  max-width: 113.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.technology__content-cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  row-gap: 1rem;
}
@media screen and (max-width: 900px) {
  .technology__content-cards {
    grid-template-columns: repeat(2, 1fr);
    width: 90%;
  }
}
@media screen and (max-width: 450px) {
  .technology__content-cards {
    grid-template-columns: 1fr;
  }
}
.technology__content-cards .card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2.4rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.4rem;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  border-radius: 0.8rem;
  background: var(--Primary-Dark, #0b2d34);
}
.technology__content-cards .card-icon {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  top: 0;
  left: 0;
}
.technology__content-cards .card-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.8rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  color: var(--Green-100, #e0fae4);
}
.technology__content-cards .card-title .desc p {
  /*	1) Headlines text group
  --------------------------------------- */
  font-size: calc(var(--fs-small-rate) * 1.6rem);
  line-height: 1.25;
  font-family: "Geist", sans-serif;
  font-weight: 400;
}

.reference {
  background: var(--Cool-grey-Cool-grey-100, #f2f4f8);
}
.reference__content {
  width: 100%;
  max-width: 113.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.2rem;
}
.reference__content-title {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.4rem;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}
.reference__content-title .header {
  max-width: 25rem;
}
.reference__content-slider {
  width: 100%;
  max-width: 113.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.2rem;
}
.reference__content-slider .box-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
}
.reference__content-slider .box-slider__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 9.6rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4rem;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  border-radius: 1.2rem;
  background: var(--Primary-Dark, #0b2d34);
}
@media screen and (max-width: 760px) {
  .reference__content-slider .box-slider__content {
    padding: 4.6rem;
  }
}
@media screen and (max-width: 460px) {
  .reference__content-slider .box-slider__content {
    padding: 3rem;
  }
}
.reference__content-slider .box-slider__content.swiper {
  max-width: 113.6rem;
}
@media screen and (max-width: 1050px) {
  .reference__content-slider .box-slider__content.swiper {
    max-width: 95%;
  }
}
.reference__content-slider .box-slider__content::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, from(#0b2d34), to(rgba(11, 45, 52, 0)));
  background: linear-gradient(270deg, #0b2d34 0%, rgba(11, 45, 52, 0) 100%);
  right: 0;
  top: 0;
  z-index: 5;
}
@media screen and (max-width: 840px) {
  .reference__content-slider .box-slider__content::before {
    width: 40%;
  }
}
.reference__content-slider .box-slider__content-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.reference__content-slider .box-slider__content-text .desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 59rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.4rem;
  color: var(--Green-100, #e0fae4);
}
.reference__content-slider .box-slider__content-text .desc .content p {
  /*	1) Headlines text group
  --------------------------------------- */
  font-size: calc(var(--fs-small-rate) * 2rem);
  line-height: 1.3;
  font-family: "Geist", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 460px) {
  .reference__content-slider .box-slider__content-text .desc .content p {
    /*	1) Headlines text group
    --------------------------------------- */
    font-size: calc(var(--fs-small-rate) * 1.6rem);
    line-height: 1.25;
  }
}
.reference__content-slider .box-slider__content-text .desc__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
}
.reference__content-slider .box-slider__content-text .desc__author .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
}
@media screen and (max-width: 560px) {
  .reference__content-slider .box-slider__content-text .desc__author .text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1rem;
  }
  .reference__content-slider .box-slider__content-text .desc__author .text .divider {
    display: none;
  }
}
.reference__content-slider .box-slider__content .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
}
.reference__content-slider .box-slider__content .pagination .swiper-button-prev,
.reference__content-slider .box-slider__content .pagination .swiper-button-next {
  position: relative;
  left: unset;
  right: unset;
  width: 100%;
  margin-top: 0;
  border-radius: 1.4rem;
  -webkit-box-shadow: -3px -3px 3px 0px rgba(11, 45, 52, 0.15) inset, 3px 3px 3px 0px rgba(255, 255, 255, 0.25) inset;
          box-shadow: -3px -3px 3px 0px rgba(11, 45, 52, 0.15) inset, 3px 3px 3px 0px rgba(255, 255, 255, 0.25) inset;
}
.reference__content-slider .box-slider__content .pagination .swiper-button-prev::after,
.reference__content-slider .box-slider__content .pagination .swiper-button-next::after {
  display: none;
}
.reference__content-slider .box-slider__content .pagination .swiper-pagination {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
  bottom: unset;
  top: unset;
  margin-left: 3.2rem;
}
.reference__content-slider .box-slider__content .pagination .swiper-pagination-bullet {
  position: relative;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0;
  border: 1px solid var(--Green-100, #e0fae4);
  z-index: 10;
}
.reference__content-slider .box-slider__content .pagination .swiper-pagination-bullet-active {
  background: var(--Green-100, #e0fae4);
}

.about-us {
  background: var(--Cool-grey-Cool-grey-100, #f2f4f8);
}
.about-us__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: -9.6rem;
}
.about-us__content-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 130.2rem;
  padding: 1.6rem 1.6rem 1.6rem 8.3rem;
  gap: 4.8rem;
  border-radius: 3.2rem;
  background: var(--White, #fff);
}
@media screen and (max-width: 1070px) {
  .about-us__content-box {
    padding-left: 3.6rem;
  }
}
@media screen and (max-width: 890px) {
  .about-us__content-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
    max-width: 70%;
    padding: 3rem 2.6rem;
  }
}
@media screen and (max-width: 660px) {
  .about-us__content-box {
    max-width: 95%;
  }
}
.about-us__content-box .col-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4rem;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
@media screen and (max-width: 1030px) {
  .about-us__content-box .col-left {
    gap: 2rem;
  }
}
.about-us__content-box .col-left__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.6rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
@media screen and (max-width: 750px) {
  .about-us__content-box .col-left__title .display-md {
    /*	1) Headlines text group
    --------------------------------------- */
    font-size: calc(var(--fs-small-rate) * 3.2rem);
    line-height: 1.1875;
  }
}
.about-us__content-box .col-left__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 2.4rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1030px) {
  .about-us__content-box .col-left__logos {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    row-gap: 1rem;
  }
}
.about-us__content-box .col-right {
  width: 100%;
  max-width: 53%;
  height: 100%;
}
@media screen and (max-width: 890px) {
  .about-us__content-box .col-right {
    max-width: 100%;
  }
}
.about-us__content-box .col-right figure {
  width: 100%;
  aspect-ratio: 1/1;
  height: 100%;
}
@media screen and (max-width: 890px) {
  .about-us__content-box .col-right figure {
    aspect-ratio: 1.6/1;
  }
}
.about-us__content-box .col-right figure img {
  width: 100%;
  height: 100%;
  border-radius: 2.4rem;
  background-blend-mode: color, normal;
  -o-object-fit: cover;
     object-fit: cover;
}
/*# sourceMappingURL=homepage.css.map */
