@keyframes flash {
  0% {
    background-color: #1c6ba4; }
  50% {
    background-color: #144e79; }
  100% {
    background-color: #0d324d; } }

@keyframes slider {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(calc(-30rem * 14)); } }

@keyframes counter {
  0% {
    counter-increment: count 0; }
  10% {
    counter-increment: count 1; }
  20% {
    counter-increment: count 2; }
  30% {
    counter-increment: count 3; }
  40% {
    counter-increment: count 4; }
  50% {
    counter-increment: count 5; }
  60% {
    counter-increment: count 6; }
  70% {
    counter-increment: count 7; }
  80% {
    counter-increment: count 8; }
  90% {
    counter-increment: count 9; }
  100% {
    counter-increment: count 10; } }

@keyframes jumpInfiniteChevronSm {
  0% {
    transform: translateY(0); }
  50% {
    transform: translateY(10px); }
  100% {
    transform: translateY(0); } }

@keyframes jumpInfiniteChevronMd {
  0% {
    transform: translateY(0) scale(1.5); }
  50% {
    transform: translateY(13px) scale(1.5); }
  100% {
    transform: translateY(0) scale(1.5); } }

@keyframes jumpInfiniteChevronLg {
  0% {
    transform: translateY(0) scale(2); }
  50% {
    transform: translateY(16px) scale(2); }
  100% {
    transform: translateY(0) scale(2); } }

@keyframes slideZoom {
  0% {
    top: -150px;
    right: -200px;
    transform: scale(0.2); }
  25% {
    top: -100px;
    right: -120px;
    transform: scale(0.4); }
  50% {
    top: -50px;
    right: -75px;
    transform: scale(0.6); }
  75% {
    top: 0;
    right: 0;
    transform: scale(0.8); }
  100% {
    top: 150px;
    right: 220px;
    transform: scale(1); } }

*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: inherit; }

html {
  font-size: 62.5%;
  overflow-x: hidden; }
  @media (max-width: 75em) {
    html {
      font-size: 56.25%; } }
  @media (max-width: 56.25em) {
    html {
      font-size: 50%; } }
  @media (max-width: 37.5em) {
    html {
      font-size: 43%; } }

body {
  box-sizing: border-box; }

.hover-marker--stroke {
  transition: all 0.3s ease-out; }

.hover-marker--fill {
  transition: all 0.3s ease-out; }

@font-face {
  font-family: "Exo 2";
  src: url("../dependencies/fonts/Exo_2/Exo2-VariableFont_wght.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: "Inter";
  src: url("../dependencies/fonts/Inter/Inter-VariableFont_slnt,wght.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: clip; }

.heading--primary {
  font-size: 4rem;
  font-family: "Exo 2", sans-serif;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1.1; }

.gradient-text {
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text; }
  .gradient-text--primary {
    background-image: linear-gradient(90deg, #12c9e3 -8.23%, #006a8d 108.43%); }
  .gradient-text--1-2 {
    background-image: linear-gradient(to right, #03b9d5, #0d324d); }
  .gradient-text--1-3 {
    background-image: linear-gradient(to right, #03b9d5, #c7f2a7); }

.img-autoplay__container {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 10; }
  @media (max-width: 21.85em) {
    .img-autoplay__container {
      display: none; } }

.img-autoplay__wrapper {
  display: flex;
  gap: 2.4rem;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 3.6rem; }
  @media (max-width: 56.25em) {
    .img-autoplay__wrapper {
      margin-bottom: 0; } }

.img-autoplay__box {
  position: relative;
  width: 19rem;
  height: 11rem;
  margin-bottom: 1.4rem;
  transition: all 0.3s ease-in-out; }
  @media (max-width: 75em) {
    .img-autoplay__box {
      width: 17rem;
      height: 9rem; } }
  @media (max-width: 28em) {
    .img-autoplay__box {
      width: 13rem;
      height: 7rem; } }

.img-autoplay__box::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translate(6px, 6px);
  background-color: #c7f2a7;
  opacity: 0;
  z-index: -1;
  transition: all 0.3s ease-in; }

.img-autoplay__box::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  border: 0.1px solid rgba(211, 211, 211, 0.5);
  opacity: 1;
  transition: all 0.3s ease-in; }

.img-autoplay__img {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out; }

.img-autoplay__vision-img {
  object-fit: cover;
  object-position: bottom; }

.img-autoplay__clarity-img {
  object-fit: cover;
  object-position: bottom; }

.img-autoplay__insight-img {
  object-fit: cover;
  object-position: bottom; }

.img-autoplay__box--active {
  width: 21rem;
  height: 25rem;
  margin-bottom: 0; }
  @media (max-width: 75em) {
    .img-autoplay__box--active {
      width: 19rem;
      height: 23rem; } }
  @media (max-width: 56.25em) {
    .img-autoplay__box--active {
      height: 11rem;
      margin-bottom: 2.4rem; } }

.img-autoplay__box--active::after {
  opacity: 1; }
  @media (max-width: 56.25em) {
    .img-autoplay__box--active::after {
      opacity: 1; } }

.img-autoplay__box--active::before {
  opacity: 0; }
  @media (max-width: 56.25em) {
    .img-autoplay__box--active::before {
      opacity: 0.5; } }

.img-autoplay__box--active .img-autoplay__vision-img {
  object-position: right; }
  @media (max-width: 56.25em) {
    .img-autoplay__box--active .img-autoplay__vision-img {
      object-position: initial; } }

.img-autoplay__box--active .img-autoplay__clarity-img {
  object-position: left; }
  @media (max-width: 56.25em) {
    .img-autoplay__box--active .img-autoplay__clarity-img {
      object-position: top; } }

.img-autoplay__box--active .img-autoplay__insight-img {
  object-position: 16%; }
  @media (max-width: 56.25em) {
    .img-autoplay__box--active .img-autoplay__insight-img {
      object-position: initial; } }

.img-autoplay__overlay-box {
  position: absolute;
  bottom: 1rem;
  left: 1rem; }

.img-autoplay__overlay-text--main {
  display: block;
  color: #fff;
  font-family: "Exo 2", sans-serif;
  font-size: 2.6rem;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.5rem; }
  @media (max-width: 37.5em) {
    .img-autoplay__overlay-text--main {
      font-size: 2rem;
      margin-bottom: 0; } }

.img-autoplay__overlay-text--sub, .img-autoplay__overlay-text-short--sub {
  color: #c7f2a7;
  font-size: 1.4rem;
  font-weight: 400; }

@media (max-width: 37.5em) {
  .img-autoplay__overlay-text--sub {
    display: none; } }

.img-autoplay__overlay-text-short--sub {
  display: none; }
  @media (max-width: 37.5em) {
    .img-autoplay__overlay-text-short--sub {
      display: inline-block; } }

.img-autoplay__indicator-box {
  display: flex;
  gap: 0.6rem;
  justify-content: center; }
  @media (max-width: 56.25em) {
    .img-autoplay__indicator-box {
      display: none; } }

.img-autoplay__indicator {
  width: 0.8rem;
  height: 0.5rem;
  opacity: 0.5;
  background-color: #0d324d;
  transition: all 0.3s ease-out; }

.img-autoplay__indicator--active {
  width: 2.8rem;
  opacity: 1; }

.btn, .btn:link, .btn:visited {
  display: inline-block;
  font-size: 1.6rem;
  font-family: "Exo 2", sans-serif;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  padding: 1rem 1.8rem;
  border: none;
  cursor: pointer;
  position: relative; }

.btn::after {
  content: "";
  display: inline-block;
  position: absolute;
  transition: all 0.3s; }

.btn--cta::after, .btn--transparent::after, .btn--white::after {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0; }

.btn--cta:hover, .btn--transparent:hover, .btn--white:hover {
  animation: flash 0.3s 1; }
  .btn--cta:hover::after, .btn--transparent:hover::after, .btn--white:hover::after {
    transform: scale(1.04, 1.08); }
  .btn--cta:hover .icon__arrow, .btn--transparent:hover .icon__arrow, .btn--white:hover .icon__arrow {
    transform: rotate(0); }

.btn--cta {
  background-color: #0d324d;
  color: #fff; }
  .btn--cta::after {
    z-index: -1; }
  .btn--cta:hover::after {
    background-color: #0d324d; }

.btn--transparent {
  background-color: transparent;
  color: #0d324d; }
  .btn--transparent::after {
    z-index: 1; }
  .btn--transparent::after {
    border: 2px solid #0d324d; }
  .btn--transparent:hover {
    animation: none; }
  .btn--transparent:hover .icon__download .hover-marker {
    transform: translateY(2px); }

.btn--white {
  background-color: transparent;
  color: #fff; }
  .btn--white::after {
    z-index: 1; }
  .btn--white::after {
    border: 2px solid #fff; }
  .btn--white:hover {
    animation: none; }
  .btn--white:hover .icon__download .hover-marker {
    transform: translateY(2px); }

.btn--icon .icon__arrow {
  margin-left: 0.8rem;
  transform: rotate(-45deg);
  transition: all 0.3s; }
  .btn--icon .icon__arrow--secondary {
    stroke: #0d324d; }
  .btn--icon .icon__arrow--white {
    stroke: #fff; }

.btn--icon .icon__download {
  margin-left: 0.8rem;
  transition: all 0.3s; }
  .btn--icon .icon__download .hover-marker {
    transition: all 0.3s; }

.btn--nav, .btn--nav:link, .btn--nav:visited {
  color: #000;
  padding: 2rem 2rem; }

.btn--nav::after {
  width: 0;
  height: 0.2rem;
  bottom: 10px;
  left: 0;
  border-radius: 10px;
  transition: all 0.4s; }

.btn--nav:hover::after {
  width: 100%;
  left: 0;
  right: 0;
  background: #03b9d5; }

.img-stack__container {
  display: flex;
  width: 100%; }

.img-stack__img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out; }

.img-stack__img-box--active {
  flex-grow: 2; }
  @media (max-width: 56.25em) {
    .img-stack__img-box--active {
      flex-grow: 4; } }
  @media (max-width: 37.5em) {
    .img-stack__img-box--active {
      flex-grow: 8; } }
  @media (max-width: 28em) {
    .img-stack__img-box--active {
      flex-grow: 12; } }

.img-stack__img-box--active .img-stack__img-overlay-text {
  opacity: 1; }

.img-stack__img-box--active .img-stack__dark-overlay {
  opacity: 0; }

.img-stack__dark-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 1;
  transition: all 0.3s ease-in; }

.img-stack__img-overlay-text {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  text-wrap: nowrap;
  opacity: 0;
  padding: 1.5rem 2.2rem;
  border: 1.5px solid #c7f2a7;
  background: rgba(38, 39, 41, 0.7);
  backdrop-filter: blur(20px);
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0); }

.form__group {
  margin-bottom: 1rem; }
  .form__group-name {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.6rem; }

.form__input-box--single {
  width: 50%; }

.form__input-box--multi {
  display: flex;
  gap: 1.2rem; }
  @media (max-width: 28em) {
    .form__input-box--multi {
      flex-direction: column; } }

.form__input-box--multi-dynamic .form__input-box {
  margin-top: 1.4rem; }

.form__input-box--radio {
  display: inline-flex;
  gap: 2rem;
  font-size: 1.4rem;
  padding-bottom: 2.6rem;
  margin-bottom: 0; }

.form__input-box-wrapper {
  position: relative;
  padding-bottom: 1.8rem;
  flex: 1; }

.form__error-msg {
  padding: 0 1rem;
  color: red;
  position: absolute;
  bottom: 0;
  left: 0; }

.form__input-placeholder {
  color: #575e63;
  transition: all 200ms ease-in; }

.form__input {
  position: relative;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  width: 100%; }
  .form__input--text-area {
    height: 100px;
    resize: vertical; }
  .form__input--org-name {
    display: none;
    transition: all 0.3s ease-out; }
  .form__input input[type="text"],
  .form__input input[type="email"],
  .form__input input[type="tel"],
  .form__input textarea {
    outline: none;
    border: 0px solid #dbdbdb;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.07); }
    .form__input input[type="text"]::placeholder,
    .form__input input[type="email"]::placeholder,
    .form__input input[type="tel"]::placeholder,
    .form__input textarea::placeholder {
      font-size: 1.4rem;
      font-weight: 400; }
    .form__input input[type="text"]:focus-visible,
    .form__input input[type="email"]:focus-visible,
    .form__input input[type="tel"]:focus-visible,
    .form__input textarea:focus-visible {
      outline: 1.5px solid #0d324d; }
    .form__input input[type="text"]:focus + .form__input-placeholder,
    .form__input input[type="text"]:not(:placeholder-shown) + .form__input-placeholder,
    .form__input input[type="email"]:focus + .form__input-placeholder,
    .form__input input[type="email"]:not(:placeholder-shown) + .form__input-placeholder,
    .form__input input[type="tel"]:focus + .form__input-placeholder,
    .form__input input[type="tel"]:not(:placeholder-shown) + .form__input-placeholder,
    .form__input textarea:focus + .form__input-placeholder,
    .form__input textarea:not(:placeholder-shown) + .form__input-placeholder {
      color: #0d324d;
      top: 8px;
      font-size: 1rem;
      transform: translateY(-50%) scale(0.9); }
  .form__input-placeholder {
    font-size: 1.4rem;
    position: absolute;
    left: 0;
    top: 50%;
    margin-left: 1rem;
    transform: translateY(-50%); }
  .form__input--radio {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    flex-shrink: 0;
    background: none;
    border: 0;
    box-shadow: inset 0 0 0 1px #0d324d;
    box-shadow: inset 0 0 0 1.5px #0d324d;
    appearance: none;
    transition: box-shadow 150ms cubic-bezier(0.95, 0.15, 0.5, 1.25); }
    .form__input--radio:checked {
      box-shadow: inset 0 0 0 7px #0d324d; }
    .form__input--radio:focus {
      outline: none; }
  .form__input--submit {
    border: none;
    background: #0d324d;
    color: #fff;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    cursor: pointer; }

.form__submit-btn-box {
  position: relative;
  padding-bottom: 3rem; }

.form__submit-btn {
  width: 100%;
  height: 100%;
  padding: 1.5rem; }

.form__success-msg {
  width: 100%;
  color: #575e63;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
  display: none;
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translate(-50%, -1px); }

input:not(input[type="checkbox"], input[type="radio"]),
textarea {
  display: block;
  width: 100%;
  height: 100%;
  padding: 1.5rem; }

.icon__chevron {
  animation: jumpInfiniteChevronSm 1.5s infinite; }
  .icon__chevron--x2 {
    animation: jumpInfiniteChevronMd 1.5s infinite; }
  .icon__chevron--x3 {
    animation: jumpInfiniteChevronLg 1.5s infinite; }

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; }
  .preloader__spinner {
    border: 4px solid #03b9d5;
    border-radius: 50%;
    border-top: 4px solid #fff;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite; }

.loader-spinner {
  display: none;
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  animation: spin 1s linear infinite; }
  .loader-spinner__box {
    display: flex;
    justify-content: center;
    align-items: center; }
  .loader-spinner--secondary {
    border: 2px solid #0d324d;
    border-top: 2px solid #fff; }
  .loader-spinner--white {
    border: 2px solid #fff;
    border-top: 2px solid #575e63; }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

/****************************************/
/* NAVIGATION SECTION */
/****************************************/
/*trigger events settings*/
/* .main-nav-list-item.trigger-enter .dropdown {
      display: block;
  } */
.main-nav {
  position: relative;
  perspective: 600px; }
  @media (max-width: 56.25em) {
    .main-nav {
      background-color: rgba(255, 255, 255, 0.98);
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100vh;
      transform: translateX(100%);
      transition: all 300ms ease-in;
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      pointer-events: none;
      visibility: hidden; } }
  .main-nav__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    list-style: none; }
    @media (max-width: 56.25em) {
      .main-nav__list {
        width: 30%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0; } }
    @media (max-width: 37.5em) {
      .main-nav__list {
        width: 75%; } }
  .main-nav__link:link, .main-nav__link:visited {
    display: inline-block;
    text-decoration: none;
    color: #000;
    font-family: "Exo 2";
    font-size: 1.6rem;
    font-weight: 500;
    padding: 2rem 2rem;
    cursor: pointer; }
    @media (max-width: 56.25em) {
      .main-nav__link:link, .main-nav__link:visited {
        padding: 0;
        color: #232526;
        font-family: "Exo 2", sans-serif;
        font-size: 1.8rem;
        font-weight: 600; } }
  .main-nav__list-item {
    position: relative;
    border-bottom: 3px solid transparent;
    transition: width 0.3s ease-in-out; }
    @media (max-width: 56.25em) {
      .main-nav__list-item {
        width: 100%; } }
    .main-nav__list-item.trigger-enter-active .main-nav__dropdown {
      opacity: 1;
      pointer-events: auto;
      visibility: visible; }
  .main-nav__list-item-cta {
    display: none; }
    @media (max-width: 56.25em) {
      .main-nav__list-item-cta {
        display: initial;
        margin-top: 3rem; } }
  .main-nav__list-item::after {
    position: absolute;
    bottom: 10px;
    left: 0;
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #03b9d5;
    border-radius: 10px;
    transition: width 300ms ease; }
    @media (max-width: 56.25em) {
      .main-nav__list-item::after {
        content: none; } }
  .main-nav__list-item:hover::after {
    width: 100%; }
  .main-nav__text-box {
    display: flex;
    justify-content: end;
    align-items: center; }
    @media (max-width: 56.25em) {
      .main-nav__text-box {
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        border-bottom: 1px solid #d2e5f3; } }
  .main-nav__dropdown {
    min-width: 25rem;
    list-style: none;
    opacity: 0;
    overflow: hidden;
    padding: 2rem 2rem;
    position: absolute;
    top: -17px;
    left: -130%;
    z-index: 100;
    border-radius: 2px;
    transition: all 0.5s;
    transform: translateY(78px);
    will-change: opacity;
    pointer-events: none;
    visibility: hidden;
    backdrop-filter: blur(20px);
    display: flex;
    gap: 1rem; }
    @media (max-width: 56.25em) {
      .main-nav__dropdown {
        min-width: 0;
        height: 0;
        max-height: 0;
        flex-direction: column;
        padding: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        position: initial;
        transform: none;
        gap: 2.8rem;
        overflow-y: scroll; } }
  .main-nav__dropdown-list-item {
    min-width: 25rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 1.5rem 3rem;
    border-left: 1px solid #f2f2f3; }
    @media (max-width: 56.25em) {
      .main-nav__dropdown-list-item {
        padding: 0;
        border-left: none; } }
  .main-nav__dropdown-chevron-btn {
    display: none;
    background-color: transparent;
    padding: 0; }
    @media (max-width: 56.25em) {
      .main-nav__dropdown-chevron-btn {
        display: initial; } }
  .main-nav__dropdown-chevron-icon {
    transition: all 0.3s ease-out; }
  .main-nav__dropdown-list-item--no-img {
    display: block;
    padding: 1.5rem 3rem; }
    @media (max-width: 56.25em) {
      .main-nav__dropdown-list-item--no-img {
        padding: 0; } }
  .main-nav__dropdown-list-item:first-of-type {
    border-left: none; }
  .main-nav__dropdown-list-item-text-box {
    display: flex;
    flex-direction: column; }
    @media (max-width: 56.25em) {
      .main-nav__dropdown-list-item-text-box {
        display: block; } }
  @media (max-width: 56.25em) {
    .main-nav__dropdown-list-item-img {
      display: none; } }
  .main-nav__dropdown-sm-title {
    color: #0d324d;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 0.6rem; }
    @media (max-width: 56.25em) {
      .main-nav__dropdown-sm-title {
        display: none; } }
  .main-nav__dropdown-nav-link:link, .main-nav__dropdown-nav-link:visited {
    display: inline-block;
    text-decoration: none;
    text-wrap: nowrap;
    color: #262729;
    font-family: "Exo 2";
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 0.4rem; }
    @media (max-width: 56.25em) {
      .main-nav__dropdown-nav-link:link, .main-nav__dropdown-nav-link:visited {
        font-size: 1.6rem;
        color: #232526;
        font-weight: 400; } }
  .main-nav__dropdown-nav-link:hover {
    color: #03b9d5; }
  .main-nav__dropdown-nav-link-summary {
    color: #80878e;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.4; }
    @media (max-width: 56.25em) {
      .main-nav__dropdown-nav-link-summary {
        display: none; } }
  .main-nav__list-item.trigger-enter-active .main-nav__dropdown {
    opacity: 1;
    pointer-events: auto;
    visibility: visible; }
  .main-nav__dropdown-bg {
    position: absolute;
    border-radius: 4px;
    box-shadow: 0 50px 100px rgba(50, 50, 93, 0.1), 0 15px 35px rgba(50, 50, 93, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1);
    transform-origin: 50% 0;
    display: flex;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    background-color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s, opacity 0.1s, transform 0.2s; }
    @media (max-width: 56.25em) {
      .main-nav__dropdown-bg {
        display: none; } }
  .main-nav__dropdown-bg.open {
    opacity: 1;
    pointer-events: all;
    visibility: visible; }
  .main-nav__dropdown-bg-arrow {
    position: absolute;
    width: 15px;
    height: 15px;
    display: none;
    background-color: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(10px);
    transform: translateY(-50%) rotate(45deg); }
  .main-nav__dropdown--open .main-nav__dropdown {
    height: auto;
    max-height: 30rem;
    padding: 1rem; }
  .main-nav__dropdown--open .main-nav__dropdown-chevron-icon {
    transform: rotate(180deg); }

.dropdown-industries__wrapper {
  margin-bottom: 4rem; }
  @media (max-width: 56.25em) {
    .dropdown-industries__wrapper {
      margin-bottom: 0; } }

.dropdown-industries__title {
  color: #262729;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 2.4rem; }
  @media (max-width: 56.25em) {
    .dropdown-industries__title {
      display: none; } }

.dropdown-industries__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-bottom: 2.4rem;
  border-bottom: 1px solid #fff; }
  @media (max-width: 56.25em) {
    .dropdown-industries__list {
      display: flex;
      flex-direction: column;
      gap: 1.6rem;
      padding-bottom: 0; } }

.dropdown-industries__list-item {
  padding: 1rem;
  transition: all 0.3s ease-out; }
  .dropdown-industries__list-item:hover {
    background-color: #fff; }
  @media (max-width: 56.25em) {
    .dropdown-industries__list-item {
      padding: 0; } }

.dropdown-industries__link:visited, .dropdown-industries__link:link {
  display: inline-block;
  text-decoration: none; }
  .dropdown-industries__link:visited:hover .dropdown-industries__name, .dropdown-industries__link:link:hover .dropdown-industries__name {
    color: #03b9d5; }

.dropdown-industries__name {
  color: #80878e;
  font-size: 1.2rem;
  font-weight: 400; }
  @media (max-width: 56.25em) {
    .dropdown-industries__name {
      color: #262729;
      font-size: 1.6rem; } }

@media (max-width: 56.25em) {
  .dropdown-industries__img {
    display: none; } }

.mobile-nav--open .main-nav {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  visibility: visible; }

@keyframes slide {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(-100%); } }

.logos {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  margin-bottom: 3.4rem; }

.logos:hover .logos-slide {
  animation-play-state: paused; }

.logos-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
  position: relative; }

.logos-slide-img-box {
  display: inline-block;
  position: relative;
  margin: 0 2rem;
  border-radius: 1.4rem;
  overflow: hidden; }

.logos-slide-overlay {
  display: flex;
  flex-direction: column;
  justify-content: end;
  width: 100%;
  height: 100%;
  padding: 1.4rem;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 1.4rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.7)); }

.logos-slide-overlay-text {
  color: #fff;
  font-family: "Exo 2", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1; }

.logos-slide img {
  display: flex;
  max-height: 20rem; }

.footer {
  background-image: url("../assets/bg-grayish-black.webp");
  background-repeat: no-repeat;
  background-size: cover;
  color: #dedede;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.3; }
  .footer__container {
    max-width: 130rem;
    margin: 0 auto;
    padding: 3.8rem 0 3.8rem 0; }
  .footer__grid {
    gap: 6rem;
    padding: 0 2rem; }
    @media (max-width: 75em) {
      .footer__grid {
        gap: 3rem; } }
  .footer__title {
    font-size: 2.6rem;
    font-family: "Exo 2", sans-serif;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 1.2rem; }
  .footer__about-summary {
    margin-bottom: 3rem; }
  .footer__links-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 1.2rem; }
    .footer__links-list-item {
      display: flex;
      align-items: center;
      gap: 1rem; }
  .footer__links-list-item:hover .footer__links-icon {
    transform: rotate(0);
    font-weight: 500;
    color: #c7f2a7; }
  .footer__links-text:link, .footer__links-text:visited {
    text-decoration: none;
    color: #dedede;
    font-size: 1.4rem;
    font-weight: 400;
    cursor: pointer; }
  .footer__links-icon {
    font-size: 1.6rem;
    transform: rotate(180deg);
    transition: all 0.3s ease-in-out; }
  .footer__social-list {
    display: flex;
    flex-direction: row;
    list-style: none;
    gap: 1.2rem; }
    .footer__social-list-item {
      cursor: pointer; }
  .footer__contact-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 1.2rem; }
    .footer__contact-list-item {
      display: flex;
      align-items: center;
      gap: 1rem; }
  .footer__icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.6rem 1rem;
    background-color: #2b2c2e;
    height: 100%;
    cursor: pointer; }
  .footer__icon-path {
    transition: all 0.3s ease-out; }
  .footer__icon-box:hover .footer__icon .footer__icon-path {
    fill: #c7f2a7; }

.grid {
  display: grid; }
  .grid-cols--2 {
    grid-template-columns: 1fr 1fr; }
    @media (max-width: 56.25em) {
      .grid-cols--2 {
        grid-template-columns: 1fr; } }
  .grid-cols--3 {
    grid-template-columns: repeat(3, 1fr); }
  .grid-cols--4 {
    grid-template-columns: repeat(4, 1fr); }
    @media (max-width: 56.25em) {
      .grid-cols--4 {
        grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 21.85em) {
      .grid-cols--4 {
        grid-template-columns: repeat(1, 1fr); } }

.header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 2rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100; }
  @media (max-width: 56.25em) {
    .header {
      justify-content: space-between; } }
  .header__logo-box {
    cursor: pointer; }
  @media (max-width: 56.25em) {
    .header__cta-btn-box {
      display: none; } }

.mobile-nav__btn {
  background: transparent;
  padding: 0;
  display: none; }
  @media (max-width: 56.25em) {
    .mobile-nav__btn {
      display: block;
      z-index: 1; } }

.mobile-nav__btn-icon {
  width: 4rem;
  height: 4rem;
  background-color: transparent;
  position: relative; }

.mobile-nav__btn-icon .bar1,
.mobile-nav__btn-icon .bar2,
.mobile-nav__btn-icon .bar3 {
  transition: transform 0.2s ease-out; }

.mobile-nav__btn-icon .bar2 {
  top: 8px; }

.mobile-nav__btn-icon .bar3 {
  top: 16px; }

.mobile-nav--open .mobile-nav__btn-icon .bar1 {
  transform: translate(12px, 0px) rotate(45deg); }

.mobile-nav--open .mobile-nav__btn-icon .bar2 {
  opacity: 0; }

.mobile-nav--open .mobile-nav__btn-icon .bar3 {
  transform: translate(-24px, 11px) rotate(-45deg); }

.navigation__nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  list-style: none; }

.wrapper {
  padding: 0 2rem; }

.about-banner {
  height: 70vh;
  background: url("../assets/about-banner.png");
  background-repeat: no-repeat;
  background-position-x: 36%;
  background-position-y: 40%;
  position: relative; }
  .about-banner__overlay {
    background: linear-gradient(298deg, #000 10.14%, rgba(0, 0, 0, 0.5) 39.42%, rgba(0, 0, 0, 0) 64.31%);
    background-size: cover;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; }
    @media (max-width: 56.25em) {
      .about-banner__overlay {
        background: linear-gradient(298deg, #000 10.14%, rgba(0, 0, 0, 0.788) 39.42%, rgba(0, 0, 0, 0.767) 64.31%); } }
  .about-banner__container {
    padding: 3rem 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center; }
    @media (max-width: 56.25em) {
      .about-banner__container {
        left: 1rem;
        right: 0; } }
    @media (max-width: 37.5em) {
      .about-banner__container {
        left: 1rem;
        right: 0; } }
  .about-banner__summary-box {
    padding: 0 1rem; }
  .about-banner__title-sm {
    color: #c7f2a7;
    font-family: "Exo 2", sans-serif;
    font-size: 2.6rem;
    font-weight: 400;
    line-height: 1; }
  .about-banner__title {
    color: #fff;
    font-family: "Exo 2", sans-serif;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 2.4rem; }
  .about-banner__summary {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 2rem; }

.achievements__container {
  max-width: 130rem;
  margin: 0 auto;
  padding: 7rem 0 7rem 0; }

.achievements__card-box {
  display: flex;
  column-gap: 5rem;
  row-gap: 3rem;
  text-align: center;
  max-width: 75%;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center; }

.achievements__card-icon {
  margin-bottom: 1rem; }

.achievements__card-data {
  color: #0d324d;
  font-family: "Exo 2", sans-serif;
  font-size: 2.6rem;
  font-weight: 400; }

.achievements__card-text {
  color: #262729;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.3; }

.company {
  margin-bottom: 11.2rem; }
  .company__container {
    max-width: 50%;
    margin: 0 auto;
    padding: 0 1rem; }
    @media (max-width: 56.25em) {
      .company__container {
        max-width: 80%; } }
    @media (max-width: 37.5em) {
      .company__container {
        max-width: 100%; } }
  .company__tag-line-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 0.6rem; }
  .company__tag-line {
    font-size: 6.15rem;
    font-family: "Exo 2", sans-serif;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1.2;
    height: 7.5rem;
    overflow: hidden;
    position: relative; }
    .company__tag-line-text {
      display: flex;
      flex-direction: column;
      animation: slideup 4.5s infinite; }
  .company__tag-line-icon-box {
    position: relative;
    overflow: hidden;
    width: 12.5rem;
    height: 12rem; }
  .company__tag-line-icon {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    transition: opacity 1s ease-in-out; }
    .company__tag-line-icon--show {
      opacity: 1; }
  .company__about-title {
    color: #1b1c1d;
    text-align: center;
    font-family: "Exo 2", sans-serif;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 1.8rem; }
  .company__about-summary {
    color: #81878e;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.4; }

.highlights {
  background: #1b1c1d; }
  .highlights__container {
    max-width: 130rem;
    margin: 0 auto;
    padding: 11rem 0 10.4rem 0; }
  .highlights__grid {
    grid-template-columns: 0.5fr 1fr;
    gap: 9rem; }
    @media (max-width: 75em) {
      .highlights__grid {
        grid-template-columns: 0.9fr 1fr;
        gap: 2rem; } }
    @media (max-width: 75em) {
      .highlights__grid {
        grid-template-columns: 1fr;
        gap: 2rem; } }
  .highlights__title-sm {
    color: #03b9d5;
    font-family: "Exo 2", sans-serif;
    font-size: 2.6rem;
    font-weight: 400;
    margin-bottom: 0.8rem; }
  .highlights__title {
    color: #fff;
    font-family: "Exo 2", sans-serif;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.2rem; }
  .highlights__summary {
    color: #79838a;
    font-size: 1.4rem;
    font-weight: 400; }
  .highlights__card-box {
    padding: 0;
    gap: 3rem; }
    @media (max-width: 56.25em) {
      .highlights__card-box {
        grid-template-columns: 1fr 1fr; } }
    @media (max-width: 37.5em) {
      .highlights__card-box {
        grid-template-columns: 1fr; } }
  .highlights__card {
    display: flex;
    gap: 2.6rem;
    align-items: center;
    background-color: #262729;
    padding: 2rem 2.8rem; }
  .highlights__card-title {
    color: #c7f2a7;
    font-family: "Exo 2", sans-serif;
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 0.8rem; }
  .highlights__card-text {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.3; }

.values {
  background: #fafafa; }
  .values__container {
    max-width: 130rem;
    margin: 0 auto;
    padding: 10rem 0 12rem 0; }
  .values__grid {
    grid-template-columns: 2fr 0.6fr;
    gap: 7.2rem; }
    @media (max-width: 75em) {
      .values__grid {
        grid-template-columns: 2fr 0.9fr;
        gap: 3rem; } }
    @media (max-width: 56.25em) {
      .values__grid {
        grid-template-columns: 1fr; } }
  .values__cards-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center; }
    @media (max-width: 75em) {
      .values__cards-box {
        gap: 1.6; } }
    @media (max-width: 37.5em) {
      .values__cards-box {
        grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 56.25em) {
      .values__cards-box {
        grid-row: 2 / span 1; } }
    @media (max-width: 28em) {
      .values__cards-box {
        grid-template-columns: 1fr; } }
  .values__card {
    padding: 2rem;
    background: #fff;
    box-shadow: 4px 4px 50px 0px rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease-in; }
    .values__card-icon {
      margin-bottom: 2rem; }
    .values__card-title {
      color: #1b1c1d;
      font-size: 2.6rem;
      font-family: "Exo 2", sans-serif;
      font-weight: 300;
      line-height: 1.2;
      margin-bottom: 3rem;
      transition: all 0.2s ease-in; }
    .values__card-summary {
      color: #80878e;
      font-size: 1.4rem;
      line-height: 1.3; }
    .values__card:hover {
      transform: scale(1.03); }
    .values__card:hover .values__card-title {
      transform: translateY(-3px); }
  .values__title {
    color: var(--style, #262729);
    font-size: 4rem;
    font-family: "Exo 2", sans-serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 3.5rem; }
  .values__title-sub {
    color: #03b9d5;
    font-size: 2.6rem;
    font-family: "Exo 2", sans-serif;
    font-weight: 400;
    line-height: 1.3; }
  .values__summary-list {
    list-style: none;
    color: #000;
    font-size: 1.6rem;
    line-height: 1.2; }
  .values__summary-list-item {
    margin-bottom: 2rem; }
  .values__summary-list-item::before {
    content: "";
    display: inline-block;
    width: 1.6rem;
    height: 1.4rem;
    background-image: url("../assets/tick-sm.svg");
    background-size: cover;
    margin-right: 0.8rem; }

.leadership__container {
  max-width: 130rem;
  margin: 0 auto;
  padding: 10rem 0 10rem 0;
  text-align: center; }

.leadership__title-sm {
  color: #03b9d5;
  font-family: "Exo 2", sans-serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1; }

.leadership__title {
  color: #262729;
  font-family: "Exo 2", sans-serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 7rem; }

.leadership__team-box {
  display: grid;
  grid-template-columns: repeat(3, auto);
  row-gap: 6.8rem;
  column-gap: 7.6rem;
  width: fit-content;
  margin: 0 auto; }

.leadership__team-member-card {
  display: flex;
  flex-direction: column; }

.leadership__team-member-img-box {
  display: inline-flex;
  margin-bottom: 1.6rem;
  position: relative;
  background: url("../assets/leadership/blank-canvas.png");
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden; }
  .leadership__team-member-img-box:hover .leadership__team-social-profile-icon--linkedin
.hover-marker--fill {
    fill: #0072b1; }
  .leadership__team-member-img-box:hover .leadership__team-member-img {
    transform: scale(1.05); }

.leadership__team-member-img {
  width: 100%;
  transition: all 0.2s ease-in; }

.leadership__team-social-profile-icon-box {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-flex;
  cursor: pointer; }

.leadership__team-social-profile-link {
  display: inline-flex; }

.leadership__team-member-name {
  color: #0d324d;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.5rem; }

.leadership__team-member-designation {
  color: #575e63;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1; }

.contact-us__container {
  max-width: 130rem;
  margin: 0 auto;
  padding: 10rem 0 10rem 0; }

.contact-us__grid {
  grid-template-columns: auto 1fr; }
  @media (max-width: 75em) {
    .contact-us__grid {
      grid-template-columns: 0.5fr 1fr; } }
  @media (max-width: 56.25em) {
    .contact-us__grid {
      grid-template-columns: 0.9fr 1fr; } }
  @media (max-width: 37.5em) {
    .contact-us__grid {
      grid-template-columns: 1fr; } }

.contact-us__img-box {
  display: flex;
  align-items: center;
  background-color: #f3f5f5; }

.contact-us__img {
  width: 100%; }

.contact-us__form-container {
  padding: 4rem;
  background-color: #f3f5f5; }

.contact-us__consent-box {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem; }

@media (max-width: 56.25em) {
  .contact-us .form__input-box--multi {
    flex-direction: column; } }

.approach-banner {
  background-color: #1b1c1d; }
  .approach-banner__wrapper {
    max-width: 130rem;
    margin: 0 auto;
    padding: 6.4rem 0 10rem 0; }
  .approach-banner__container {
    padding: 0 3rem; }
  .approach-banner__title {
    color: #03b9d5;
    font-family: "Exo 2", sans-serif;
    font-size: 2.6rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 0.8rem; }
  .approach-banner__summary {
    color: #fff;
    font-family: "Exo 2", sans-serif;
    font-size: 3.6rem;
    font-weight: 300;
    line-height: 1.3;
    max-width: 70%; }
    @media (max-width: 56.25em) {
      .approach-banner__summary {
        max-width: 100%; } }

.approach__container {
  padding: 0 3rem; }

.approach__wrapper {
  padding: 5rem 0; }

.approach__grid {
  display: grid;
  gap: 8rem;
  grid-template-columns: repeat(2, 1fr);
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 0 0 0; }
  @media (max-width: 56.25em) {
    .approach__grid {
      grid-template-columns: 1fr; } }

.approach__img {
  width: 100%; }
  @media (max-width: 56.25em) {
    .approach__img {
      grid-row: 1 / span 1; } }
  @media (max-width: 56.25em) {
    .approach__img {
      width: 75%;
      justify-self: center; } }
  @media (max-width: 37.5em) {
    .approach__img {
      width: 90%; } }

.approach__title-sm {
  color: #03b9d5;
  font-family: "Exo 2", sans-serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1rem; }

.approach__title {
  color: #262729;
  font-family: "Exo 2", sans-serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.8rem; }

.approach__summary {
  color: #575e63;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1.4rem; }
  .approach__summary:last-of-type {
    margin-bottom: 0; }

.approach__cards {
  max-width: 130rem;
  margin: 0 auto;
  padding: 3rem 0 3rem 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.2rem; }
  @media (max-width: 37.5em) {
    .approach__cards {
      grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 28em) {
    .approach__cards {
      grid-template-columns: repeat(4, 1fr); } }
  @media (max-width: 21.85em) {
    .approach__cards {
      grid-template-columns: repeat(2, 1fr); } }

.approach__card {
  display: flex;
  flex-direction: column;
  gap: 1rem; }

.approach__card-icon-box {
  width: 7rem;
  height: 7rem;
  background-color: #e9fcff;
  display: flex;
  justify-content: center;
  align-items: center; }

.approach__card-title {
  color: #0d324d;
  font-size: 1.4rem;
  font-weight: 400; }

.approach__card-summary {
  color: #80878e;
  font-size: 1.2rem;
  font-weight: 400; }
  @media (max-width: 28em) {
    .approach__card-summary {
      display: none; } }

.our-approach-benefits {
  background-color: #1b1c1d;
  padding: 0 3rem; }
  .our-approach-benefits__container {
    max-width: 130rem;
    margin: 0 auto;
    padding: 6rem 0 8rem 0; }
  .our-approach-benefits__title {
    color: #fff;
    font-family: "Exo 2", sans-serif;
    font-size: 4rem;
    font-weight: 400;
    text-align: center;
    line-height: 1;
    margin-bottom: 6rem; }
  .our-approach-benefits__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 5.5rem;
    row-gap: 4rem; }
    @media (max-width: 56.25em) {
      .our-approach-benefits__cards {
        grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 37.5em) {
      .our-approach-benefits__cards {
        grid-template-columns: repeat(1, 1fr); } }
  .our-approach-benefits__card {
    display: flex;
    flex-direction: column;
    gap: 1.2rem; }
    @media (max-width: 56.25em) {
      .our-approach-benefits__card {
        align-items: center; } }
  .our-approach-benefits__card-img {
    display: inline-flex;
    width: 100%; }
    @media (max-width: 56.25em) {
      .our-approach-benefits__card-img {
        width: 75%; } }
    @media (max-width: 37.5em) {
      .our-approach-benefits__card-img {
        width: 50%; } }
  .our-approach-benefits__card-text {
    display: inline-block;
    color: #c7f2a7;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.2; }

.bolt-intro {
  background: url("../assets/gradient-rectangle-bg-bolt.webp");
  background-repeat: no-repeat;
  background-position-x: right;
  position: relative; }
  @media (max-width: 75em) {
    .bolt-intro {
      background-position-x: 150%; } }
  @media (max-width: 56.25em) {
    .bolt-intro {
      background: none; } }
  .bolt-intro__container {
    max-width: 130rem;
    margin: 0 auto;
    padding: 4rem 0 8.4rem 0; }
  .bolt-intro__grid {
    gap: 11.8rem; }
    @media (max-width: 75em) {
      .bolt-intro__grid {
        gap: 4rem; } }
  .bolt-intro__text-box {
    display: flex;
    flex-direction: column;
    justify-content: center; }
    @media (max-width: 56.25em) {
      .bolt-intro__text-box {
        grid-row: 2 / span 1; } }
  .bolt-intro__title-big {
    font-size: 10.6rem;
    font-weight: 500;
    line-height: 1;
    background: linear-gradient(180deg, #c7f2a7 -22.57%, #fff 116.11%);
    background: linear-gradient(180deg, #6699bd -22.57%, #fff 116.11%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; }
    @media (max-width: 75em) {
      .bolt-intro__title-big {
        font-size: 8rem; } }
  .bolt-intro__logo-img {
    width: 100%;
    margin-bottom: 4.6rem; }
    @media (max-width: 75em) {
      .bolt-intro__logo-img {
        width: 75%; } }
  .bolt-intro__summary-box {
    max-width: 72%; }
    @media (max-width: 56.25em) {
      .bolt-intro__summary-box {
        align-self: center;
        text-align: center; } }
  .bolt-intro__summary {
    color: #575e63;
    font-size: 1.6rem;
    font-weight: 300; }
  .bolt-intro__summary:first-of-type {
    margin-bottom: 2rem; }
  .bolt-intro__summary:last-of-type {
    margin-bottom: 3rem; }
  @media (max-width: 56.25em) {
    .bolt-intro__illustration-box {
      text-align: center; } }
  .bolt-intro__illustration {
    width: 100%; }
    @media (max-width: 56.25em) {
      .bolt-intro__illustration {
        width: 75%; } }

.bolt-benefits {
  background-color: #1b1c1d; }
  .bolt-benefits__container {
    max-width: 130rem;
    margin: 0 auto;
    padding: 6.5rem 0 3rem 0; }
  .bolt-benefits__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 21rem; }
    @media (max-width: 75em) {
      .bolt-benefits__grid {
        gap: 10rem; } }
    @media (max-width: 56.25em) {
      .bolt-benefits__grid {
        gap: 5rem; } }
    @media (max-width: 37.5em) {
      .bolt-benefits__grid {
        grid-template-columns: repeat(1, 1fr); } }
  .bolt-benefits__card {
    display: flex;
    flex-direction: column;
    align-items: center; }
  .bolt-benefits__card-icon {
    margin-bottom: 2.5rem; }
  .bolt-benefits__card-title {
    color: #fff;
    font-family: "Exo 2", sans-serif;
    font-size: 2.6rem;
    font-weight: 400;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 1.5rem; }
  .bolt-benefits__card-summary {
    color: #79838a;
    font-size: 1.4rem;
    font-weight: 400;
    text-align: center; }

.why-bolt__container {
  max-width: 130rem;
  margin: 0 auto;
  padding: 7rem 0 7rem 0; }

.why-bolt__title-box {
  margin-bottom: 7rem; }

.why-bolt__title-small {
  font-family: "Exo 2", sans-serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.1;
  background: linear-gradient(90deg, #d157ce 11%, #b257d1 60%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; }

.why-bolt__title-big {
  color: #262729;
  font-family: "Exo 2", sans-serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1; }

.why-bolt__grid {
  gap: 4.8rem; }
  @media (max-width: 56.25em) {
    .why-bolt__grid {
      margin-bottom: 6.8rem; } }

.why-bolt__img {
  width: 100%; }
  @media (max-width: 56.25em) {
    .why-bolt__img {
      width: 75%;
      justify-self: center; } }

.why-bolt__list-explanation {
  color: #262729;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 3rem; }

.why-bolt__list {
  list-style: none;
  list-style-image: url("../assets/icon-tick--purple.svg");
  margin-bottom: 4rem; }
  @media (max-width: 56.25em) {
    .why-bolt__list {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr; } }
  @media (max-width: 37.5em) {
    .why-bolt__list {
      grid-template-columns: 1fr 1fr; } }
  @media (max-width: 21.85em) {
    .why-bolt__list {
      grid-template-columns: 1fr; } }

.why-bolt__list-item {
  color: #575e63;
  font-size: 1.4rem;
  font-weight: 400;
  display: flex;
  gap: 1.4rem;
  align-items: center;
  margin-bottom: 1.2rem; }

.why-bolt__summary {
  color: #262729;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1rem; }
  .why-bolt__summary:last-of-type {
    margin-bottom: none; }

.why-bolt__card-box {
  display: flex;
  gap: 2.3rem;
  margin-bottom: 5rem; }

.why-bolt__card-grid {
  list-style: none;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.3rem; }
  @media (max-width: 56.25em) {
    .why-bolt__card-grid {
      grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 37.5em) {
    .why-bolt__card-grid {
      grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 21.85em) {
    .why-bolt__card-grid {
      grid-template-columns: repeat(1, 1fr);
      row-gap: 4rem; } }

.why-bolt__card {
  display: flex;
  gap: 1.5rem;
  align-items: center; }

.why-bolt__card-text {
  color: #262729;
  font-family: "Exo 2", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.3; }

.bolt-industries {
  background: #fcf7ff; }
  .bolt-industries__container {
    max-width: 130rem;
    margin: 0 auto;
    padding: 12.8rem 0 9rem 0; }
  .bolt-industries__grid {
    gap: 2rem; }
  .bolt-industries__card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 4px 4px 50px 0px rgba(0, 0, 0, 0.03); }
  .bolt-industries__img {
    width: 100%; }
  .bolt-industries__name {
    color: #262729;
    font-family: "Exo 2", sans-serif;
    font-size: 4rem;
    font-weight: 600; }
  .bolt-industries__summary {
    color: #262729;
    font-size: 1.4rem;
    font-weight: 400; }

.bolt-dashboard__container {
  max-width: 130rem;
  margin: 0 auto;
  padding: 9.6rem 0 6.8rem 0; }

.bolt-dashboard__grid {
  column-gap: 4.5rem;
  row-gap: 5rem; }

.bolt-dashboard__img-box {
  background: radial-gradient(circle at 50% 50%, #9e87f9 10%, #f0d6f5 50%, white 50%); }
  .bolt-dashboard__img-box:last-of-type {
    background: radial-gradient(circle at 50% 50%, #9e87f9 30%, #f0d6f5 50%, white 50%); }
  @media (max-width: 56.25em) {
    .bolt-dashboard__img-box {
      background: radial-gradient(circle at 50% 50%, #9e87f9 10%, #f0d6f5 40%, white 40%);
      text-align: center; }
      .bolt-dashboard__img-box:last-of-type {
        background: radial-gradient(circle at 50% 50%, #9e87f9 30%, #f0d6f5 47%, white 47%); } }

.bolt-dashboard__img {
  width: 100%; }
  @media (max-width: 56.25em) {
    .bolt-dashboard__img {
      width: 75%; } }

.bolt-dashboard__report-img {
  width: 78%; }
  @media (max-width: 56.25em) {
    .bolt-dashboard__report-img {
      width: 60%; } }

.bolt-dashboard__text-box {
  display: flex;
  flex-direction: column;
  justify-content: center; }
  @media (max-width: 56.25em) {
    .bolt-dashboard__text-box {
      align-items: center; }
      .bolt-dashboard__text-box:nth-of-type(3) {
        grid-row: 4 / span 1; } }

.bolt-dashboard__title-small {
  color: #9a5fa3;
  font-family: "Exo 2", sans-serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.4; }

.bolt-dashboard__title-big {
  color: #262729;
  font-family: "Exo 2", sans-serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.2; }

.bolt-dashboard__summary {
  color: #262729;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5s; }
  @media (max-width: 56.25em) {
    .bolt-dashboard__summary {
      text-align: center; } }

.bolt-brochure {
  background: #1b1c1d;
  position: relative; }
  .bolt-brochure::after, .bolt-brochure::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%; }
  .bolt-brochure::after {
    right: 0;
    background-image: url("../assets/bolt-solution-illustration.webp");
    background-repeat: no-repeat;
    background-position-x: 90%;
    background-position-y: center;
    background-size: 30%; }
    @media (max-width: 75em) {
      .bolt-brochure::after {
        background-position-x: 95%;
        background-size: 40%; } }
    @media (max-width: 56.25em) {
      .bolt-brochure::after {
        content: none; } }
  .bolt-brochure::before {
    right: 0;
    background-image: url("../assets/bg-hexagon-frame.png");
    background-repeat: no-repeat;
    background-position-x: 80%;
    background-position-y: center; }
    @media (max-width: 75em) {
      .bolt-brochure::before {
        background-position-x: 105%; } }
    @media (max-width: 56.25em) {
      .bolt-brochure::before {
        content: none; } }
  .bolt-brochure__container {
    max-width: 130rem;
    margin: 0 auto;
    padding: 17.6rem 0 20.2rem 0; }
    @media (max-width: 56.25em) {
      .bolt-brochure__container {
        padding: 7rem 0 10rem 0; } }
  .bolt-brochure__download {
    width: 60%; }
    @media (max-width: 56.25em) {
      .bolt-brochure__download {
        width: 100%;
        text-align: center; } }
  .bolt-brochure__download-text {
    color: #fff;
    font-family: "Exo 2", sans-serif;
    font-size: 4rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 5rem; }

.bolt-features {
  position: relative; }
  .bolt-features__container {
    max-width: 130rem;
    margin: 0 auto;
    padding: 5.3rem 0 14rem 0; }
  .bolt-features::after, .bolt-features::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    z-index: -1; }
  .bolt-features::after {
    left: 0;
    background: radial-gradient(circle, #9f88fb 0%, #d8add9 100%); }
  .bolt-features::before {
    right: 0;
    background: #fafafa;
    backdrop-filter: blur(20px); }
  .bolt-features__grid {
    gap: 12rem; }
  .bolt-features__device-view-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 2rem; }
  .bolt-features__device-view-text {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 300;
    text-align: center;
    line-height: 1;
    margin-bottom: 0.8rem; }
  .bolt-features__device-view-img {
    margin-bottom: 5rem; }
  .bolt-features__list-title-small {
    color: #262729;
    font-family: "Exo 2", sans-serif;
    font-size: 2.6rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 0.2rem; }
  .bolt-features__list-title-big {
    color: #0d324d;
    font-family: "Exo 2", sans-serif;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 8.8rem; }
  .bolt-features__standard-grid {
    gap: 6.8rem; }
  .bolt-features__standard-title {
    color: #000;
    font-family: "Exo 2", sans-serif;
    font-size: 2.6rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 2rem; }
    .bolt-features__standard-title span {
      background: linear-gradient(90deg, #d157ce 11%, #b257d1 60%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; }
  .bolt-features__standard-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem; }
  .bolt-features__standard-features-list-item {
    display: flex;
    gap: 0.4rem;
    color: #575e63;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.3; }

@keyframes slideup {
  0% {
    transform: translateY(0); }
  10% {
    transform: translateY(0); }
  20% {
    transform: translateY(0); }
  30% {
    transform: translateY(0); }
  40% {
    transform: translateY(-40%); }
  50% {
    transform: translateY(-37%); }
  60% {
    transform: translateY(-37%); }
  70% {
    transform: translateY(-75%); }
  80% {
    transform: translateY(-72%); }
  90% {
    transform: translateY(-72%); }
  100% {
    transform: translateY(2%); } }

.hero__container {
  height: 75vh;
  padding: 0;
  display: grid;
  grid-template-columns: 0.7fr 1fr; }
  @media (max-width: 56.25em) {
    .hero__container {
      grid-template-columns: 1fr;
      grid-template-rows: 2fr 1fr;
      height: 83vh; } }

.hero__summary-box {
  position: relative; }
  @media (max-width: 56.25em) {
    .hero__summary-box {
      grid-row: 2 / span 1; } }
  .hero__summary-box-wrapper {
    width: 85%;
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-60%, -50%); }
    @media (max-width: 56.25em) {
      .hero__summary-box-wrapper {
        text-align: center; } }
    @media (max-width: 37.5em) {
      .hero__summary-box-wrapper {
        width: 95%; } }

.hero__heading {
  color: #1b1c1d;
  font-weight: 600;
  margin-bottom: 1.3rem; }

.hero__description {
  color: #81878e;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 4.2rem; }

.hero__btn-box {
  display: flex;
  align-items: center;
  gap: 2.2rem; }
  @media (max-width: 56.25em) {
    .hero__btn-box {
      justify-content: center; } }

.hero__illustration-box {
  position: relative; }

.hero__illustration {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute; }

.section-cv {
  background: url("../assets/gradient-rectangle-bg-secondary.webp");
  background-repeat: no-repeat;
  background-size: cover; }
  @media (max-width: 56.25em) {
    .section-cv {
      background-position-x: 80%; } }
  .section-cv__container {
    max-width: 130rem;
    margin: 0 auto;
    padding: 8.6rem 0 8.6rem 0; }
  .section-cv__grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 2.8rem; }
    @media (max-width: 56.25em) {
      .section-cv__grid {
        grid-template-columns: 1fr; } }
  @media (max-width: 56.25em) {
    .section-cv__summary-box {
      text-align: center; } }
  .section-cv__illustration-box {
    display: flex;
    align-items: center;
    gap: 2.2rem; }
  .section-cv__img-box-wrapper {
    background-color: #c7f2a7; }
  .section-cv__img-box {
    position: relative;
    transition: all 0.3s ease-in; }
    .section-cv__img-box .img {
      display: flex;
      width: 100%;
      height: 100%;
      transition: all 0.3s ease-out; }
    .section-cv__img-box .img-text-box {
      position: absolute;
      bottom: 2.2rem;
      left: 2.2rem; }
      @media (max-width: 37.5em) {
        .section-cv__img-box .img-text-box {
          left: 1.2rem; } }
      .section-cv__img-box .img-text-box .text-highlighted {
        font-size: 2.6rem;
        color: #fff;
        font-family: "Exo 2", sans-serif;
        font-weight: 500;
        line-height: 1.3; }
      .section-cv__img-box .img-text-box .text-normal {
        font-size: 1.4rem;
        color: #c7f2a7;
        line-height: 1.5; }
        @media (max-width: 28em) {
          .section-cv__img-box .img-text-box .text-normal {
            display: none; } }
  .section-cv__img-box-wrapper:hover .section-cv__img-box {
    transform: translate3d(-0.8rem, -0.6rem, 1rem); }
  .section-cv__heading {
    color: #fff;
    margin-bottom: 2rem; }
  .section-cv__summary {
    font-size: 1.6rem;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 3.8rem; }

.section-benefits {
  display: none; }

.industries__container {
  max-width: 130rem;
  margin: 0 auto;
  padding: 5rem 0 0rem 0; }

.industries__summary-box {
  max-width: 45%;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 6rem; }
  @media (max-width: 56.25em) {
    .industries__summary-box {
      max-width: 80%; } }

.industries__heading {
  color: #1b1c1d;
  font-size: 2.6rem;
  font-family: "Exo 2", sans-serif;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 4.2rem; }

.industries__number {
  font-size: 6.15rem;
  font-family: "Exo 2", sans-serif;
  line-height: 1.1;
  margin-bottom: 1.4rem; }

.industries__summary {
  color: #575e63;
  font-size: 1.6rem;
  line-height: 1.4; }

.solution {
  background-image: url("../assets/bg-mirrors.png");
  background-repeat: no-repeat;
  background-size: cover; }
  .solution__container {
    max-width: 130rem;
    margin: 0 auto;
    padding: 10rem 0 10rem 0; }
  .solution__title {
    color: #fff;
    text-align: center;
    font-size: 4rem;
    font-family: "Exo 2", sans-serif;
    font-weight: 400;
    line-height: 1.5; }
  .solution__title-sub {
    color: #fff;
    text-align: center;
    font-size: 2.6rem;
    font-family: "Exo 2", sans-serif;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 7.4rem; }
  .solution__cards-box {
    display: flex;
    justify-content: center;
    gap: 1.4rem; }
  .solution__card {
    flex: 1;
    background: #1b1c1d;
    box-shadow: 20px 2px 15px 0px rgba(136, 242, 233, 0.3);
    padding: 1.4rem;
    overflow: hidden;
    position: relative; }
    .solution__card-number {
      display: inline-block;
      color: #c7f2a7;
      font-size: 6.15rem;
      font-weight: 300;
      line-height: 1.4;
      transition: all 0.3s ease-in-out; }
    .solution__card-title {
      color: #fff;
      font-size: 1.6rem;
      font-weight: 300;
      line-height: 1.1;
      transition: all 0.3s ease-in-out; }
    .solution__card::before {
      content: "";
      display: inline-block;
      position: absolute;
      top: 10px;
      right: 10px;
      width: 4rem;
      height: 4rem;
      background-image: url("../assets/arrow-bold.svg");
      background-repeat: no-repeat;
      background-size: contain;
      transition: all 0.3s ease-in-out; }
    .solution__card:hover .solution__card-number,
    .solution__card:hover .solution__card-title {
      transform: translateX(-4px); }
    .solution__card:hover::before {
      transform: translateX(120%); }

.platforms {
  background-color: #fafafa; }
  .platforms__container {
    max-width: 130rem;
    margin: 0 auto;
    padding: 7rem 0 9rem 0; }
  .platforms__text {
    color: #262729;
    text-align: center;
    font-family: "Exo 2", sans-serif;
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 5rem; }
  .platforms__logo-box {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    justify-content: center; }
    @media (max-width: 56.25em) {
      .platforms__logo-box {
        grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 28em) {
      .platforms__logo-box {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 4rem; } }
  .platforms__logo-item {
    display: inline-flex;
    align-items: center;
    padding: 0 1.2rem;
    border-left: 1px solid #efefef; }
    @media (max-width: 56.25em) {
      .platforms__logo-item {
        justify-content: center; } }

.contact {
  background-image: url("../assets/bg-dunes.webp");
  background-repeat: no-repeat;
  background-position-x: 40%;
  background-position-y: 12rem;
  background-size: cover; }
  .contact__no-text-box .contact__container {
    padding: 6rem 0; }
  .contact__bg--hide {
    background: none; }
  .contact__bg--linear-plain {
    background: #a8becc;
    background: linear-gradient(90deg, #a8becc 0%, #a8becc 36%, #718594 100%);
    background: -moz-linear-gradient(90deg, #a8becc 0%, #a8becc 36%, #718594 100%);
    background: -webkit-linear-gradient(90deg, #a8becc 0%, #a8becc 36%, #718594 100%); }
  .contact__container {
    max-width: 130rem;
    margin: 0 auto;
    padding: 10rem 0 4.6rem 0; }
  .contact__grid {
    padding: 0 3rem;
    grid-template-columns: 0.5fr 1fr;
    gap: 1rem;
    align-items: center; }
    @media (max-width: 37.5em) {
      .contact__grid {
        display: block; } }
  .contact__img {
    width: 100%; }
    @media (max-width: 37.5em) {
      .contact__img {
        display: none; } }
  .contact__form-box-grid {
    grid-template-columns: 1fr 0.62fr;
    gap: 5rem;
    padding: 0; }
    @media (max-width: 56.25em) {
      .contact__form-box-grid {
        grid-template-columns: 1fr; } }
  .contact__text-box {
    padding-bottom: 4rem;
    margin-bottom: 20rem;
    position: relative; }
  .contact__quote {
    display: inline-block;
    color: #232526;
    font-size: 3.6rem;
    font-family: "Exo 2", sans-serif;
    font-weight: 200;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 5rem; }
  .contact__summary {
    color: #0d324d;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 2rem; }
  .contact__chevron-down-box {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: center; }
  .contact__form-img-container {
    overflow: hidden;
    height: fit-content; }
  .contact__form-img {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in; }
    .contact__form-img:hover {
      transform: scale(1.1); }
  .contact__form-container {
    padding: 4.5rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px); }
  .contact__form-title {
    color: #0d324d;
    font-size: 4rem;
    font-family: "Exo 2", sans-serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 3.2rem; }
  .contact__text-box-container {
    max-width: 130rem;
    margin: 0 auto;
    padding: 14.6rem 0 6rem 0; }
    .contact__text-box-container .contact__text-box {
      margin-bottom: 0; }
  .contact__wrapper-container {
    max-width: 130rem;
    margin: 0 auto;
    padding: 4.5rem 0 4.5rem 0; }

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000; }

#loader {
  border: 16px solid #f3f3f3;
  border-top: 16px solid #3498db;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 1s linear infinite; }

.loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: #fff;
  z-index: 1001; }

.section-left {
  left: 0; }

.section-right {
  right: 0; }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.industry__wrapper {
  position: relative; }

.industry__banner {
  height: 65vh;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1; }

.industry__sheet-header {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 0 0 0;
  padding: 0 3rem;
  padding-top: 31rem; }

.industry__sheet-header-title {
  color: #fff;
  font-family: "Exo 2", sans-serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1rem; }

.industry__sheet-header-title-sub {
  color: #fff;
  font-family: "Exo 2", sans-serif;
  font-size: 2.6rem;
  font-weight: 300;
  margin-bottom: 4.4rem; }
  .industry__sheet-header-title-sub span {
    padding: 5px 0;
    border-bottom: 3px #03b9d5 solid;
    border-radius: 2px; }

.industry__sheet {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 6%, #fafafa 0%, #fafafa 100%); }

.industry__sheet-container {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 0 0 0;
  background-color: #fff; }

.industry__about-container {
  padding: 6.3rem 0;
  border-bottom: 1px solid #f2f2f3; }

.industry__about-grid {
  padding: 0 6.8rem;
  grid-template-columns: auto 1fr;
  gap: 4.8rem; }
  @media (max-width: 75em) {
    .industry__about-grid {
      padding: 0 3rem; } }
  @media (max-width: 56.25em) {
    .industry__about-grid {
      grid-template-columns: 1fr; } }

.industry__about-img {
  width: 100%; }
  @media (max-width: 56.25em) {
    .industry__about-img {
      width: initial; } }
  @media (max-width: 37.5em) {
    .industry__about-img {
      width: 100%; } }
  @media (max-width: 28em) {
    .industry__about-img {
      width: 100%; } }

.industry__about-summary {
  color: #262729;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 4rem; }

.industry__about-list-box {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2rem;
  row-gap: 2.4rem; }
  @media (max-width: 75em) {
    .industry__about-list-box {
      grid-template-columns: repeat(2, 1fr);
      row-gap: 2rem; } }
  @media (max-width: 56.25em) {
    .industry__about-list-box {
      grid-template-columns: repeat(3, 1fr);
      row-gap: 2rem; } }

.industry__about-list-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  color: #0d324d;
  font-size: 1.4rem;
  font-weight: 400; }

.industry__scenarios-container {
  padding: 7rem 6.8rem; }
  @media (max-width: 75em) {
    .industry__scenarios-container {
      padding: 7rem 3rem; } }

.industry__scenarios-grid {
  max-width: 80%;
  padding: 0;
  margin: 0 auto;
  column-gap: 17rem;
  row-gap: 7rem; }
  @media (max-width: 75em) {
    .industry__scenarios-grid {
      column-gap: 7rem; } }

.industry__scenarios-box {
  display: flex;
  flex-direction: column; }

.industry__scenario-img {
  width: 100%; }

.industry__scenarios-title {
  color: #232526;
  font-family: "Exo 2", sans-serif;
  font-size: 4rem;
  font-weight: 300;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 9.6rem; }

.industry__scenario-img {
  margin-bottom: 2rem; }

.industry__scenario-name {
  color: #0d324d;
  font-family: "Exo 2";
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 1.2rem; }

.industry__scenario-summary {
  color: #80878e;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4; }

.industry__scenarios-pros-container {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 5rem 6.8rem; }

.industry__scenarios-pros-text {
  color: #fff;
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 8.4rem; }

.industry__scenarios-pros-list {
  display: flex;
  gap: 8rem;
  align-items: center; }

.industry__scenarios-pros-box {
  display: flex;
  flex-direction: column;
  align-items: center; }

.industry__scenarios-pros-icon {
  margin-bottom: 1rem; }

.industry__scenarios-pros-data {
  color: #fff;
  font-family: "Exo 2", sans-serif;
  font-size: 3.6rem;
  font-weight: 400; }

.industry__scenarios-pros-data-description {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400; }

.industry__cta {
  background-color: #fafafa;
  padding: 6rem 0 12rem 0; }

.industry__cta-container {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 0 0 0;
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  justify-content: center;
  align-items: center; }

.industry__cta-text {
  color: #0d324d;
  font-size: 1.6rem;
  font-weight: 300;
  text-align: center; }

.industry__wrapper--manufacturing .industry__banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../assets/industries/manufacturing/industry-manufacturing--header.jpg"); }
  @media (max-width: 75em) {
    .industry__wrapper--manufacturing .industry__banner {
      background-position-x: 60%; } }
  @media (max-width: 56.25em) {
    .industry__wrapper--manufacturing .industry__banner {
      background-position-x: 50%; } }
  @media (max-width: 37.5em) {
    .industry__wrapper--manufacturing .industry__banner {
      background-position-x: 40%; } }

.industry__wrapper--manufacturing .industry__scenarios-pros-container {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../assets/industries/manufacturing/industry-manufacturing--footer.jpg");
  background-position: bottom; }

.industry__wrapper--automotive .industry__banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../assets/industries/automotive/industry-automotive--header.jpg"); }
  @media (max-width: 75em) {
    .industry__wrapper--automotive .industry__banner {
      background-position-x: 25%; } }
  @media (max-width: 56.25em) {
    .industry__wrapper--automotive .industry__banner {
      background-position-x: 45%; } }
  @media (max-width: 37.5em) {
    .industry__wrapper--automotive .industry__banner {
      background-position-x: 55%; } }

.industry__wrapper--automotive .industry__scenarios-pros-container {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../assets/industries/automotive/industry-automotive--footer.jpg"); }

.industry__wrapper--oil-gas .industry__banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../assets/industries/oil-gas/industry-oilgas--header.jpg"); }
  @media (max-width: 75em) {
    .industry__wrapper--oil-gas .industry__banner {
      background-position-x: 20%; } }
  @media (max-width: 56.25em) {
    .industry__wrapper--oil-gas .industry__banner {
      background-position-x: 20%; } }
  @media (max-width: 37.5em) {
    .industry__wrapper--oil-gas .industry__banner {
      background-position-x: 20%; } }

.industry__wrapper--oil-gas .industry__scenarios-pros-container {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../assets/industries/oil-gas/industry-oilgas--footer.jpg"); }

.industry__wrapper--logistics-transportation .industry__banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../assets/industries/logistics-transportation/industry-logistics--header.jpg"); }
  @media (max-width: 75em) {
    .industry__wrapper--logistics-transportation .industry__banner {
      background-position-x: 25%; } }
  @media (max-width: 56.25em) {
    .industry__wrapper--logistics-transportation .industry__banner {
      background-position-x: 25%; } }
  @media (max-width: 37.5em) {
    .industry__wrapper--logistics-transportation .industry__banner {
      background-position-x: 45%; } }

.industry__wrapper--logistics-transportation .industry__scenarios-pros-container {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../assets/industries/logistics-transportation/industry-logistics--footer.jpg");
  background-position: bottom; }

.industry__wrapper--healthcare .industry__banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../assets/industries/healthcare/industry-healthcare--header.jpg"); }
  @media (max-width: 75em) {
    .industry__wrapper--healthcare .industry__banner {
      background-position-x: 25%; } }
  @media (max-width: 56.25em) {
    .industry__wrapper--healthcare .industry__banner {
      background-position-x: 25%; } }
  @media (max-width: 37.5em) {
    .industry__wrapper--healthcare .industry__banner {
      background-position-x: 45%; } }

.industry__wrapper--healthcare .industry__scenarios-pros-container {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../assets/industries/healthcare/industry-healthcare--footer.jpg");
  background-position: bottom; }

.industry__wrapper--smart-cities .industry__banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../assets/industries/smart-city/industry-smart-city--header.jpg"); }
  @media (max-width: 75em) {
    .industry__wrapper--smart-cities .industry__banner {
      background-position-x: 25%; } }
  @media (max-width: 56.25em) {
    .industry__wrapper--smart-cities .industry__banner {
      background-position-x: 25%; } }
  @media (max-width: 37.5em) {
    .industry__wrapper--smart-cities .industry__banner {
      background-position-x: 45%; } }

.industry__wrapper--smart-cities .industry__scenarios-pros-container {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../assets/industries/smart-city/industry-smart-city--footer.jpg"); }

.industry__wrapper--retails .industry__banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../assets/industries/retail/industry-retail--header.jpg"); }
  @media (max-width: 75em) {
    .industry__wrapper--retails .industry__banner {
      background-position-x: 35%; } }
  @media (max-width: 56.25em) {
    .industry__wrapper--retails .industry__banner {
      background-position-x: 45%; } }
  @media (max-width: 37.5em) {
    .industry__wrapper--retails .industry__banner {
      background-position-x: 55%; } }

.industry__wrapper--retails .industry__scenarios-pros-container {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../assets/industries/retail/industry-retail--footer.jpg"); }

.industry__wrapper--gated-communities .industry__banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../assets/industries/gated-communities/industry-gated-communities--header.jpg"); }
  @media (max-width: 75em) {
    .industry__wrapper--gated-communities .industry__banner {
      background-position-x: 25%; } }
  @media (max-width: 56.25em) {
    .industry__wrapper--gated-communities .industry__banner {
      background-position-x: 25%; } }
  @media (max-width: 37.5em) {
    .industry__wrapper--gated-communities .industry__banner {
      background-position-x: 45%; } }

.industry__wrapper--gated-communities .industry__scenarios-pros-container {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../assets/industries/gated-communities/industry-gated-communities--footer.jpg"); }

.te-app {
  max-width: 130rem;
  margin: 0 auto;
  padding: 14rem 0 16.2rem 0;
  position: relative; }
  .te-app__container {
    gap: 2.6rem; }
  .te-app__logo {
    margin-bottom: 2.4rem; }
    @media (max-width: 28em) {
      .te-app__logo {
        width: 100%; } }
  .te-app__summary {
    color: #262729;
    font-size: 1.6rem;
    font-weight: 300; }
  .te-app__illustration-box {
    display: inline-flex;
    justify-content: flex-end; }
    @media (max-width: 56.25em) {
      .te-app__illustration-box {
        justify-content: center; } }
  .te-app__illustration {
    width: 100%; }
    @media (max-width: 56.25em) {
      .te-app__illustration {
        width: 75%; } }
    @media (max-width: 37.5em) {
      .te-app__illustration {
        width: 85%; } }
  .te-app__cp-text {
    position: absolute;
    left: 5%;
    bottom: 20px;
    transform: translate(-5%, 0);
    color: #575e63;
    font-size: 1.4rem;
    font-weight: 300;
    text-wrap: nowrap; }

.te-app-pros {
  position: relative; }
  .te-app-pros__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: -1; }
  .te-app-pros__bg-vid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2; }
  .te-app-pros__container {
    max-width: 130rem;
    margin: 0 auto;
    padding: 9.2rem 0 12rem 0; }
  .te-app-pros__grid {
    grid-template-columns: 0.5fr 1fr;
    gap: 8rem; }
    @media (max-width: 56.25em) {
      .te-app-pros__grid {
        grid-template-columns: 1fr; } }
  .te-app-pros__summary-title-sm {
    color: #03b9d5;
    font-family: "Exo 2", sans-serif;
    font-size: 2.6rem;
    font-weight: 400;
    margin-bottom: 0.8rem; }
  .te-app-pros__summary-title {
    color: #fff;
    font-family: "Exo 2", sans-serif;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 3.8rem; }
  .te-app-pros__summary {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 400; }
  .te-app-pros__details-box {
    row-gap: 3.5rem;
    column-gap: 3.5rem;
    padding: 0; }
    @media (max-width: 56.25em) {
      .te-app-pros__details-box {
        grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 37.5em) {
      .te-app-pros__details-box {
        grid-template-columns: 1fr; } }
  .te-app-pros__details {
    display: flex;
    gap: 2rem;
    align-items: center; }
  .te-app-pros__details-icon-box {
    width: 10rem;
    height: 10rem;
    background: #262729;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center; }
    .te-app-pros__details-icon-box:hover .hover-marker--stroke {
      stroke: #fff; }
    .te-app-pros__details-icon-box:hover .te-app-pros__details-icon {
      transform: scale(1.08); }
  .te-app-pros__details-icon {
    transition: all 0.3s ease-out; }
  .te-app-pros__details-text {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 300; }

.te-soln-banner {
  position: relative; }
  .te-soln-banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1; }
    @media (max-width: 75em) {
      .te-soln-banner__overlay {
        background-color: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(2px); } }
    @media (max-width: 56.25em) {
      .te-soln-banner__overlay {
        display: none; } }
  .te-soln-banner__video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 35%;
    z-index: -2; }
    @media (max-width: 56.25em) {
      .te-soln-banner__video {
        object-position: 10%; } }
    @media (max-width: 37.5em) {
      .te-soln-banner__video {
        object-position: 20%; } }
  .te-soln-banner__container {
    height: 53rem;
    max-width: 130rem;
    margin: 0 auto;
    padding: 12rem 0 27.2rem 0;
    position: relative; }
  .te-soln-banner__wrapper {
    position: absolute;
    top: 20%;
    left: 55%;
    right: 0; }
    @media (max-width: 75em) {
      .te-soln-banner__wrapper {
        top: 50%;
        left: 50%;
        width: 80%;
        transform: translate(-50%, -50%); } }
    @media (max-width: 56.25em) {
      .te-soln-banner__wrapper {
        display: none; } }
  .te-soln-banner__title-sm {
    color: #0d324d;
    font-family: "Exo 2", sans-serif;
    font-size: 2.6rem;
    font-weight: 300;
    line-height: 1; }
  .te-soln-banner__title {
    color: #262729;
    font-family: "Exo 2", sans-serif;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1; }

.cagr__container {
  max-width: 130rem;
  margin: 0 auto;
  padding: 12rem 0 12rem 0; }

.cagr__grid {
  gap: 10rem; }

.cagr__title-sub {
  color: #03b9d5;
  font-size: 2.6rem;
  font-family: "Exo 2", sans-serif;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1rem; }

.cagr__title {
  color: #1b1c1d;
  font-size: 4rem;
  font-family: "Exo 2", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem; }

.cagr__summary-title {
  color: #575e63;
  font-size: 1.6rem;
  line-height: 1.1;
  margin-bottom: 3.8rem; }

.cagr__summary {
  color: #80878e;
  font-size: 1.4rem;
  line-height: 1.3;
  margin-bottom: 2rem; }

.cagr__summary:last-of-type {
  margin-bottom: 4rem; }

.cagr__chart-container {
  border-radius: 0.6rem;
  box-shadow: 0px 0.8px 8px 0px rgba(0, 0, 0, 0.07); }
  @media (max-width: 56.25em) {
    .cagr__chart-container {
      grid-row: 1 / span 1; } }
