/**
 *
 * FONT SMOOTHING
 *
 * Changes the font rendering,
 * allowing thinner fonts
 */
img {
  max-width: 100%;
}

.multiply {
  mix-blend-mode: multiply !important;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("../fonts/JetBrainsMono-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("../fonts/JetBrainsMono-Bold.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff") format("woff2"), url("../fonts/Inter-Medium.woff2") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2"), url("../fonts/Inter-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.woff2") format("woff2"), url("../fonts/Inter-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
html {
  font-size: 62.5%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 1200px) {
  .wrapper {
    padding: 4rem;
  }
}
@media (min-width: 992px) {
  .wrapper {
    padding: 2rem;
  }
}

button {
  padding: 0;
  background: none;
  border: none;
}

ul, ol {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

a {
  text-decoration: none;
}

.btn {
  text-transform: uppercase;
}

.btn-secondary {
  color: #fff;
  border-color: #fff;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #FF35B3;
  border-color: #fff;
}

.tpl-block {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.tpl-block.bg-gray {
  background-color: #F3F3F3;
}
.tpl-block.bg-dark-gray {
  background-color: #EAEAEA;
}
@media (min-width: 768px) {
  .tpl-block {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }
}

.block-heading {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.block-heading:not(.left) {
  margin-bottom: 4.8rem;
}
@media (min-width: 992px) {
  .block-heading:not(.left) {
    margin-bottom: 9rem;
  }
}
.block-heading:after {
  content: "";
  display: block;
  width: 15.6rem;
  height: 0.6rem;
  border-radius: 2px;
  background: linear-gradient(90deg, #496BD4 0%, #F637B3 100%);
  margin-top: 2.4rem;
}
.block-heading .block-sub-title {
  font-size: 1.6rem;
  letter-spacing: 3.76px;
  color: #FF35B3;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.card-item {
  padding: 2.4rem 3.2rem;
  background-color: #fff;
  border-radius: 0.8rem;
  display: flex;
  flex-direction: column;
}
.card-item img {
  align-self: flex-end;
}
.card-item .card-title {
  color: #2E2B26;
  letter-spacing: -0.28px;
  line-height: 2.8rem;
  margin-top: 1.8rem;
}
.card-item .card-desc {
  margin-top: 1.2rem;
}
.card-item.gradient .card-title, .card-item.gradient .card-desc, .card-item.blue-light .card-title, .card-item.blue-light .card-desc, .card-item.blue .card-title, .card-item.blue .card-desc {
  color: #fff;
}
.card-item.gradient {
  background: linear-gradient(133deg, #496BD4 0%, #F637B3 100%);
}
.card-item.blue-light {
  background-color: #5577E5;
}
.card-item.blue {
  background-color: #214592;
}

@media (min-width: 1200px) {
  .block-heading.left {
    text-align: left;
    align-items: flex-start;
  }
}
@media (min-width: 992px) {
  .block-heading .block-sub-title {
    font-size: 2.2rem;
    letter-spacing: 5px;
  }
}
@media (max-width: 991.98px) {
  h1, h1 {
    font-size: 2rem;
  }
  h2, .h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767.98px) {
  .container {
    max-width: none;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }
}
.site-footer {
  padding-top: 4.8rem;
  padding-bottom: 4.8rem;
  background-color: #F3F3F3;
}
@media (min-width: 768px) and (max-width: 1399.98px) {
  .site-footer .container {
    max-width: 100%;
  }
}
@media (min-width: 1400px) {
  .site-footer {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }
}

.footer-content {
  font-size: 1.4rem;
  line-height: 2.8rem;
  font-family: "JetBrains Mono", "Courier New", monospace;
  color: #000;
  font-weight: var(--bs-font-sans-serif);
}
.footer-content .brand {
  font-weight: 700;
}
.footer-content a {
  color: #000;
}
.footer-content a:hover {
  color: #FF35B3;
}
@media (min-width: 1400px) {
  .footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-content > li > * {
    display: inline-block;
  }
  .footer-content br {
    display: none;
  }
  .footer-content .address, .footer-content .tel, .footer-content .copyright, .footer-content .power {
    position: relative;
  }
  .footer-content .address::before, .footer-content .tel::before, .footer-content .copyright::before, .footer-content .power::before {
    content: "|";
    display: inline-block;
    margin-left: 1.6rem;
    margin-right: 1.6rem;
  }
}
@media (min-width: 768px) and (max-width: 1399.98px) {
  .footer-content {
    display: flex;
    justify-content: space-around;
    width: 100%;
    flex-wrap: wrap;
    text-align: center;
  }
  .footer-content .brand {
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
  }
  .footer-content .tel, .footer-content .copyright-power {
    margin-top: 0;
    margin-bottom: 0;
  }
  .footer-content .location, .footer-content .copyright-power {
    min-width: 30rem;
  }
  .footer-content .address br:last-child {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .footer-content .location, .footer-content .copyright-power {
    min-width: 28rem;
  }
}
@media (max-width: 767.98px) {
  .footer-content .tel {
    margin-top: 2.8rem;
    margin-bottom: 2.8rem;
  }
}

.hero {
  position: relative;
  padding-top: 7rem;
  padding-bottom: 27.4rem;
  background-color: #07111F;
  overflow: hidden;
}
.hero .container {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .hero-header {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .hero-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero .brand-name {
  margin-bottom: 3.2rem;
  display: inline-block;
}
.hero .brand-logo {
  line-height: 1;
  display: inline-block;
}
@media (max-width: 991.98px) {
  .hero .brand-logo > img {
    width: 84px;
    height: 73.09px;
  }
}
.hero .heading {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
}
.hero .desc {
  font-size: 1.4rem;
  font-family: "JetBrains Mono", "Courier New", monospace;
  margin-top: 1.6rem;
}
.hero .btn {
  margin-top: 1.6rem;
}
.hero .hero-content {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-left: 2.4rem;
  margin-right: 2.4rem;
  z-index: 2;
  margin-top: 5.6rem;
}
.hero .hero-content::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: 288px;
  height: 324px;
  background: transparent url("../images/shadow-gradient-mobile.png") no-repeat 0 0;
  background-size: 288px 324px;
  bottom: -16px;
  left: -28px;
}
.hero .hero-content > .inner {
  position: relative;
  z-index: 2;
  border-radius: 1.2rem 5rem;
  padding: 3.2rem;
  border: 1px solid #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.01) url("../images/noise.png") no-repeat 0 0;
  background-size: cover;
  backdrop-filter: blur(7.5px);
}
@media (min-width: 768px) {
  .hero .hero-content::before {
    width: 516px;
    height: 244px;
    background: transparent url("../images/shadow-gradient-tablet.png") no-repeat 0 0;
    background-size: 516px 244px;
    bottom: -31px;
    left: -28px;
  }
}
@media (min-width: 992px) {
  .hero {
    padding-top: 7.5rem;
    border-top-left-radius: 1.2rem;
    border-top-right-radius: 1.2rem;
    padding-bottom: 42rem;
  }
  .hero .heading {
    font-size: 3.2rem;
  }
  .hero .desc {
    font-size: 1.8rem;
  }
  .hero .hero-content::before {
    width: 596px;
    height: 368px;
    background: transparent url("../images/shadow-gradient.png") no-repeat 0 0;
    background-size: 596px 368px;
    bottom: -37px;
    left: -36px;
  }
  .hero .hero-content > .inner {
    max-width: 61.6rem;
    padding: 4.8rem;
    margin-left: 0;
    margin-right: 0;
  }
  .hero .brand-name {
    position: absolute;
    left: 0;
    top: 50%;
    margin-bottom: 0;
    transform: translateY(-50%);
  }
}
@media (min-width: 1400px) {
  .hero {
    padding-bottom: 49rem;
  }
}
@media (min-width: 465px) and (max-width: 767px) {
  .hero .hero-content::before {
    width: 392px;
    height: 226px;
    background: transparent url("../images/shadow-gradient-mobile-lg.png") no-repeat 0 0;
    background-size: 392px 226px;
    bottom: -25px;
    left: -27px;
  }
}

.service-featured {
  position: relative;
  z-index: 10;
  background-color: #F3F3F3;
  min-height: 42.5rem;
  padding-bottom: 0;
}
.service-featured .block-body {
  margin-top: -26rem;
  padding: 2.4rem;
  border-top-left-radius: 2.4rem;
  border-top-right-radius: 2.4rem;
}
.service-featured .services-list {
  margin-top: 4.8rem;
  margin-right: 4.3rem;
}
.service-featured .services-list > li + li {
  margin-top: 4rem;
}
.service-featured .services-list .wrap-icon {
  margin-bottom: 2.4rem;
}
@media (min-width: 768px) {
  .service-featured .block-body {
    padding: 6rem 9rem;
  }
  .service-featured .services-list {
    --bs-gutter-x: 4rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
    margin-top: 4.8rem;
  }
  .service-featured .services-list > li {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
    flex: 0 0 auto;
    width: 50%;
  }
  .service-featured .services-list > li + li {
    margin-top: 0;
  }
  .service-featured .services-list > li:nth-child(n+3) {
    margin-top: 3.2rem;
  }
}
@media (min-width: 992px) {
  .service-featured .block-body {
    margin-top: -38rem;
  }
}
@media (min-width: 1400px) {
  .service-featured .block-body {
    margin-top: -45rem;
  }
  .service-featured .block-body {
    padding: 9rem 14.7rem 9rem 12.4rem;
  }
  .service-featured .block-body {
    display: flex;
  }
  .service-featured .block-heading {
    min-width: 39%;
    margin-right: 15rem;
  }
  .service-featured .services-list {
    flex-grow: 1;
    margin-top: 0;
  }
}

.industries-serviced .industries-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}
.industries-serviced .wrap-logo {
  display: none;
  width: 18.5rem;
  height: 18.5rem;
  border-radius: 18.5rem;
  background-color: #F3F3F3;
  border: 1rem solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  box-shadow: 0px 1.162247777px 2.2138051987px 0px rgba(33, 53, 125, 0.07), 0px 2.7930428982px 5.3200817108px 0px rgba(33, 53, 125, 0.1), 0px 5.2590517998px 10.017241478px 0px rgba(33, 53, 125, 0.13), 0px 9.3812494278px 17.8690471649px 0px rgba(33, 53, 125, 0.15), 0px 17.5465965271px 33.422088623px 0px rgba(33, 53, 125, 0.18), 0px 42px 80px 0px rgba(33, 53, 125, 0.25);
}
.industries-serviced .wrap-logo > img {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.industries-serviced .industries {
  margin-top: 4.8rem;
}
.industries-serviced .industries > li {
  width: 25.4rem;
  height: 25.4rem;
  border-radius: 25.4rem;
  background: rgb(73, 107, 212);
  background: linear-gradient(133deg, rgb(73, 107, 212) 0%, rgb(246, 55, 179) 100%);
  color: #fff;
  position: relative;
}
.industries-serviced .industries > li.blue-light {
  background: rgba(85, 119, 229, 0.9);
}
.industries-serviced .industries > li.blue {
  background: rgba(33, 69, 146, 0.9);
}
.industries-serviced .industries .inner {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-left: 4.8rem;
  padding-right: 4.8rem;
}
@media (min-width: 1400px) {
  .industries-serviced .industries {
    margin-top: 1rem;
  }
  .industries-serviced .block-body {
    display: flex;
  }
  .industries-serviced .block-heading {
    width: 36%;
    margin-right: 15rem;
  }
}
@media (min-width: 768px) {
  .industries-serviced .wrap-logo {
    display: block;
  }
  .industries-serviced .industries-wrap {
    flex-grow: 1;
  }
  .industries-serviced .industries {
    position: relative;
    width: 67rem;
  }
  .industries-serviced .industries::before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 59.5rem;
  }
  .industries-serviced .industries > li {
    width: 35rem;
    height: 35rem;
    border-radius: 35rem;
  }
  .industries-serviced .industries > li:nth-child(1) {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
  }
  .industries-serviced .industries > li:nth-child(1) > .inner {
    padding-left: 6.9rem;
    padding-right: 7.1rem;
  }
  .industries-serviced .industries > li:nth-child(2) {
    position: absolute;
    top: 24.5rem;
    left: 16rem;
    z-index: 1;
  }
  .industries-serviced .industries > li:nth-child(2) > .inner {
    padding-top: 7rem;
    padding-left: 7.1rem;
    padding-right: 6.5rem;
  }
  .industries-serviced .industries > li:nth-child(3) {
    position: absolute;
    left: 32rem;
    top: 0;
    z-index: 2;
  }
  .industries-serviced .industries > li:nth-child(3) > .inner {
    padding-right: 5.1rem;
    padding-left: 11.6rem;
  }
  .industries-serviced .industries .inner {
    padding-left: 7rem;
    padding-right: 7rem;
  }
}
@media (max-width: 991.98px) {
  .industries-serviced .industries {
    margin-top: 4.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 767.98px) {
  .industries-serviced .industries .title {
    font-size: 1.46rem;
  }
  .industries-serviced .industries .desc {
    font-size: 1.168rem;
  }
  .industries-serviced .industries > li + li {
    margin-top: -2.4rem;
  }
}

.has-logo-large {
  position: relative;
  overflow: hidden;
}
.has-logo-large::before {
  content: "";
  display: none;
  width: 113.8rem;
  height: 99.06rem;
  background-image: url(../images/logo-effect-lumionsity.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  mix-blend-mode: luminosity;
  position: absolute;
  left: -11rem;
  top: -4rem;
}
@media (min-width: 1200px) {
  .has-logo-large::before {
    display: block;
  }
}

.product-swiper-wrap .swiper-wrapper {
  transition-timing-function: linear;
  padding-right: 2rem;
}
.product-swiper-wrap .swiper-pagination {
  top: auto;
  bottom: 0;
}

.product-swiper .swiper-slide {
  height: auto;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}
.product-swiper .card-item {
  margin-left: 2.4rem;
  height: 100%;
}
.product-swiper .swiper-wrapper {
  padding-bottom: 6rem;
}
.product-swiper .swiper-pagination-bullet {
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid #fff;
  background: none;
  opacity: 1;
}
.product-swiper .swiper-pagination-bullet-active {
  background: #FF35B3;
  border: none;
}

.splide-product .splide__list {
  height: auto;
}
.splide-product .card-item {
  height: 100%;
  width: 28rem;
}
@media (min-width: 768px) {
  .splide-product .card-item {
    width: 32rem;
  }
}
@media (min-width: 1200px) {
  .splide-product .card-item {
    width: 34.2rem;
  }
}

.splide__pagination {
  bottom: 0;
}

.splide__pagination__page {
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid #fff;
  background: none;
  opacity: 1;
}
.splide__pagination__page.is-active {
  background: #FF35B3;
  border: none;
  transform: scale(1);
}

@media (min-width: 992px) {
  .product-swiper .card-item {
    margin-left: 0;
  }
}
@media (max-width: 1199.98px) {
  .splide__track {
    padding-bottom: 4.8rem;
  }
}
@media (min-width: 1200px) {
  .leadership .row > div {
    width: auto;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .leadership .col-lg-12 {
    margin-bottom: 2.4rem;
  }
}
@media (max-width: 991.98px) {
  .leadership .row > div + div {
    margin-top: 2.4rem;
  }
}
.leadership .team {
  position: relative;
  z-index: 2;
}

.has-mountain-bg {
  position: relative;
}
.has-mountain-bg:before {
  content: "";
  display: none;
  background-image: url("../images/bg-leadership.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  mix-blend-mode: luminosity;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
}
@media (min-width: 992px) {
  .has-mountain-bg:before {
    display: block;
  }
}

.leader-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  min-width: 25rem;
}
.leader-item .image {
  border: 0.4rem solid #fff;
  border-radius: 50%;
  margin-bottom: 2.4rem;
}
.leader-item .name {
  font-size: 1.8rem;
  color: #fff;
  border-radius: 4px;
  background: linear-gradient(133deg, #496BD4 0%, #F637B3 100%);
  padding: 0.4rem 0.8rem;
  line-height: 2.8rem;
  margin-bottom: 0.2rem;
  text-align: center;
}
.leader-item .role {
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 1.4rem;
  color: #fff;
  border-radius: 4px;
  background: #5577E5;
  padding: 0.4rem 0.8rem;
  margin: 0;
  text-align: center;
}

.partners .heading {
  white-space: nowrap;
  color: #9F9F9F;
  letter-spacing: 5.28px;
}
@media (min-width: 1400px) {
  .partners .heading {
    margin-right: 8.7rem;
  }
}

.partners-list > li + li {
  margin-top: 2.4rem;
}
@media (min-width: 992px) {
  .partners-list > li + li {
    margin-top: 0;
  }
}
.partners-list a {
  display: block;
}
.partners-list img {
  mix-blend-mode: multiply;
}