.hero {
  padding: 12px;
  padding-top: 0;
}

.hero-wrapper {
  overflow: hidden;
  position: relative;
  border-radius: 30px;
}

.hero__img {
  position: absolute;
  inset: 0;
}

.hero__img img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  height: 100%;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}

.hero__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: -webkit-max-content;
  min-height: -moz-max-content;
  min-height: max-content;
  height: calc(100vh - 90px);
  max-height: 100%;
  position: relative;
  padding: 64px 0;
  margin: -12px;
}

.hero__inner .container--fluid:first-child {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.hero__content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 80px;
}

.hero__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.hero__title {
  max-width: 820px;
  width: 100%;
}

.hero__actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.hero__bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}

.hero__bottom-action {
  border: none;
  outline: none;
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  color: white;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.hero__bottom-action:hover {
  background: rgba(255, 255, 255, 0.3);
}

.hero__bottom-action svg {
  width: 24px;
  height: 24px;
}

.hero__divider {
  width: calc(100% - 76px);
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  margin: 32px auto;
}

.hero__slider-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 20px;
}

.hero .hero__slider__item--first {
  background: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  max-width: 260px;
}

.hero .hero__slider__item--first .hero__slider__item-content {
  gap: 4px;
}

.hero .hero__slider__item--first:hover {
  background: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

.hero__slider {
  margin-right: -20px;
  overflow: hidden;
}

.hero__slider__item {
  overflow: hidden;
  padding: 16px;
  border-radius: 22px;
  background: rgba(87, 87, 87, 0.1019607843);
  -webkit-backdrop-filter: blur(96px);
  backdrop-filter: blur(96px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  height: 100%;
}

.hero__slider__item:hover {
  background: rgba(87, 87, 87, 0.49);
}

.hero__slider__item-img {
  min-width: 32px;
}

.hero__slider__item-img img {
  border-radius: 50%;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
  width: 32px;
  height: 32px;
  -o-object-position: center center;
  object-position: center center;
}

.hero__slider__item-date {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  border-right: 1px solid rgba(255, 255, 255, 0.1490196078);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 16px;
}

.hero__slider__item-full {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0px;
}

.hero__slider__item-full div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.hero__slider__item-info {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.hero__slider__item-description {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.hero__slider__item-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
}

.hero__slider__item-title {
  width: 100%;
}

.hero__slider__item-title span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.hero .hero_about__slider {
  margin-right: -20px;
  overflow: hidden;
}

.hero .hero_about__slider .swiper-wrapper {
  height: 100%;
}

.hero .hero_about__slider .swiper-slide {
  height: 100%;
}

.about_us {
  --radius: 18px;
  --btn: #1f5cff;
  --ring: rgba(31, 92, 255, 0.45);
  /* Required 10px gap around the frame */
  /* Centered play button */
  /* Ripple rings */
  /* Replace your old rule */
  /* (Optional) also stop ring paints while playing */
}

.about_us__inner {
  padding: 64px 0;
}

.about_us__inner-title {
  max-width: 880px;
  width: 100%;
}

.about_us__inner-description {
  max-width: 840px;
  width: 100%;
  margin-left: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 18px;
}

.about_us__video {
  padding: 10px;
  border-radius: calc(var(--radius) + 10px);
  background: transparent;
}

.about_us__frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/9;
}

.about_us__el {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.about_us__play {
  position: absolute;
  inset: 50% auto auto 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  border: 0;
  border-radius: 999px;
  background: var(--btn);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  -o-transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  z-index: 2;
}

.about_us__play svg {
  width: 28px;
  height: 28px;
  display: block;
}

.about_us__play:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.04);
  -ms-transform: translate(-50%, -50%) scale(1.04);
  transform: translate(-50%, -50%) scale(1.04);
}

.about_us__play:active {
  -webkit-transform: translate(-50%, -50%) scale(0.98);
  -ms-transform: translate(-50%, -50%) scale(0.98);
  transform: translate(-50%, -50%) scale(0.98);
}

.about_us__play:focus-visible {
  -webkit-box-shadow: 0 0 0 3px rgba(31, 92, 255, 0.35);
  box-shadow: 0 0 0 3px rgba(31, 92, 255, 0.35);
}

.about_us__rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about_us__rings span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 74px;
  height: 74px;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  border-radius: 999px;
  border: 2px solid var(--ring);
  -webkit-animation: aboutus-pulse 1.8s ease-out infinite;
  animation: aboutus-pulse 1.8s ease-out infinite;
}

.about_us__rings span:nth-child(2) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.about_us__rings span:nth-child(3) {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.about_us .about_us__video.is-playing .about_us__play {
  opacity: 0;
  pointer-events: none;
}

.about_us .about_us__video.is-playing .about_us__rings {
  display: none;
}

.about_us__modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.about_us__modal.is-open {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.about_us__modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 201;
}

.about_us__modal-content {
  position: relative;
  z-index: 202;
  width: 100%;
  max-width: 1600px;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
}

.about_us__modal-close {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.about_us__modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.about_us__modal-close-icon {
  width: 20px;
  height: 20px;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.about_us__modal-close-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.about_us__modal-volume {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: auto;
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.about_us__modal-volume:hover {
  background: rgba(255, 255, 255, 0.15);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.about_us__modal-volume.is-muted .about_us__modal-volume-icon--unmuted {
  display: none;
}

.about_us__modal-volume.is-unmuted .about_us__modal-volume-icon--muted {
  display: none;
}

.about_us__modal-volume-icon {
  width: 20px;
  height: 20px;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.about_us__modal-volume-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.about_us__modal-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
}

.about_us__modal-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
}

@-webkit-keyframes aboutus-pulse {
  0% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }

  70% {
    opacity: 0.25;
    -webkit-transform: translate(-50%, -50%) scale(2.2);
    transform: translate(-50%, -50%) scale(2.2);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(2.8);
    transform: translate(-50%, -50%) scale(2.8);
  }
}

@keyframes aboutus-pulse {
  0% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }

  70% {
    opacity: 0.25;
    -webkit-transform: translate(-50%, -50%) scale(2.2);
    transform: translate(-50%, -50%) scale(2.2);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(2.8);
    transform: translate(-50%, -50%) scale(2.8);
  }
}

/* a11y helper */

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
}

.ceo-profile {
  padding: 64px 0;
}

.ceo-profile__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.ceo-profile__image {
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 1/1;
  max-height: 100vh;
  min-height: 40vh;
  height: auto;
}

.ceo-profile__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  display: block;
}

.ceo-profile__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
}

.ceo-profile__position p {
  margin: 0;
}

.ceo-profile__quote p {
  margin: 0;
}

.ceo-profile__quote-mark {
  margin-right: -0.1em;
}

.lets_talk {
  padding: 12px;
  padding-top: 0;
}

.lets_talk-wrapper {
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-radius: 30px;
}

.lets_talk__img {
  position: absolute;
  inset: 0;
}

.lets_talk__img img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  height: 100%;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}

.lets_talk__inner {
  min-height: -webkit-max-content;
  min-height: -moz-max-content;
  min-height: max-content;
  max-height: 100%;
  height: 720px;
  padding: 96px 0;
  margin: -12px;
}

.lets_talk__inner .container--fluid {
  height: 100%;
  padding-left: 80px;
  padding-right: 80px;
}

.lets_talk__content {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.lets_talk__content-title {
  max-width: 490px;
  width: 100%;
}

.lets_talk__content-bottom {
  max-width: 320px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
}

.milestones__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 10px;
}

.milestones__item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: calc((100% - 40px) / 3);
  width: 100%;
  padding: 32px;
  border-radius: 22px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 100px;
  min-height: 540px;
  -webkit-backdrop-filter: blur(128px);
  backdrop-filter: blur(128px);
  background: rgba(0, 0, 0, 0.0509803922);
}

.milestones__item:nth-child(2) {
  background: #1E47CA;
}

.milestones__item:nth-child(3) {
  background: #120227;
}

.milestones__item-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.milestones__item.milestones__item--person {
  min-height: 960px;
  max-width: calc(100% - 20px - 10px);
  min-width: 400px;
  background: none;
  padding: 0;
}

.milestones__item.milestones__item--person img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.milestones__item.milestones__item--content {
  max-width: calc(100% - 20px - 10px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 32px;
  background: #FFFFFF;
  overflow: visible;
}

.milestones__item-description {
  margin-top: 50px;
}

.milestones__item-description p span.text--electric-horizon {
  margin-right: -0.1em;
}

.about-us-milestones__cards-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  width: 100%;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.about-us-milestones__cards__item-card {
  padding: 32px;
  border-radius: 22px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  gap: 72px;
  height: auto;
}

.about-us-milestones__milestone {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: calc((100% - 40px) / 3);
  width: 100%;
  -webkit-backdrop-filter: blur(128px);
  backdrop-filter: blur(128px);
  background: rgba(0, 0, 0, 0.0509803922);
}

.about-us-milestones__milestone--1 .about-us-milestones__milestone-number .text {
  color: #1E47CA;
}

.about-us-milestones__milestone--1 .about-us-milestones__milestone-description .text {
  color: #120227;
}

.about-us-milestones__milestone--2 {
  background: #1E47CA;
}

.about-us-milestones__milestone--2 .text {
  color: #FFFFFF;
}

.about-us-milestones__milestone--3 {
  background: #120227;
}

.about-us-milestones__milestone--3 .text {
  color: #FFFFFF;
}

.team {
  overflow: hidden;
}

.team__inner {
  padding: 74px 0;
}

.team__inner-content {
  padding: 32px 0;
  margin-bottom: 32px;
}

.team__inner-title {
  max-width: 880px;
  width: 100%;
}

.team__inner__slider-actions {
  margin-top: 96px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 64px;
}

.team__inner__slider-navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 22px;
}

.team__inner__slider-prev,
.team__inner__slider-next {
  outline: none;
  border: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  width: 54px;
  height: 54px;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background-color: rgba(0, 0, 0, 0.1019607843);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.team__inner__slider-prev svg,
.team__inner__slider-next svg {
  width: 24px;
  color: #1E47CA;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.team__inner__slider-prev.swiper-button-disabled,
.team__inner__slider-next.swiper-button-disabled {
  opacity: 0.6;
}

.team__inner__slider-prev:hover,
.team__inner__slider-next:hover {
  background: #1E47CA;
}

.team__inner__slider-prev:hover svg,
.team__inner__slider-next:hover svg {
  color: #FFFFFF;
}

.team__inner__slider-prev.swiper-button-disabled:hover,
.team__inner__slider-next.swiper-button-disabled:hover {
  background-color: rgba(0, 0, 0, 0.1019607843);
}

.team__inner__slider-prev.swiper-button-disabled:hover svg,
.team__inner__slider-next.swiper-button-disabled:hover svg {
  color: #1E47CA;
}

.team__inner__slider-prev svg {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.team__inner__slider-next svg {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.team__item-avatar {
  min-height: 640px;
  height: 640px;
  overflow: hidden;
  border-radius: 22px;
}

.team__item-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.team__item-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 12px;
  gap: 4px;
}

.footer-about-us__inner {
  padding: 28px 0 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 30px;
}

.footer-about-us__left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
  max-width: 840px;
  width: 100%;
}

.footer-about-us__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.footer-about-us__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
}

.footer-about-us__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1280px) {
  .hero__title .text {
    font-size: 110px;
  }

  .about_us__inner-title .text {
    font-size: 42px;
  }

  .ceo-profile__inner {
    grid-template-columns: 1fr;
  }

  .lets_talk__inner {
    padding: 32px 0;
    height: 480px;
  }

  .lets_talk__content {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .lets_talk__content-title {
    max-width: 480px;
  }

  .lets_talk__content-title .text {
    font-size: 32px;
  }

  .lets_talk__content-bottom {
    margin-top: auto;
    max-width: 100%;
    gap: 22px;
  }

  .lets_talk__content-description .text {
    font-size: 20px;
  }

  .milestones__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .milestones__item {
    max-width: 100%;
    min-width: 100%;
    min-height: -webkit-max-content;
    min-height: -moz-max-content;
    min-height: max-content;
    gap: 60px;
  }

  .milestones__item-img {
    max-width: 100%;
    min-width: 100%;
    min-height: 600px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .milestones__item.milestones__item--person img {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: auto;
  }

  .milestones__item.milestones__item--person {
    max-width: 100%;
    min-width: 100%;
    min-height: -webkit-max-content;
    min-height: -moz-max-content;
    min-height: max-content;
  }

  .milestones__item.milestones__item--content {
    max-width: 100%;
    min-width: 100%;
    gap: 30px;
    min-height: -webkit-max-content;
    min-height: -moz-max-content;
    min-height: max-content;
    padding: 0;
  }

  .milestones__item-description {
    margin-top: 10px;
  }

  .about-us-milestones__cards-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .about-us-milestones__milestone {
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    min-height: 240px;
    height: auto;
  }

  .team__item-avatar {
    min-height: 590px;
    height: 590px;
  }
}

@media screen and (max-width: 991px) {
  .hero__inner {
    padding: 50px 0;
    height: calc(100vh - 90px);
  }

  .hero__title .text {
    font-size: 100px;
  }

  .about_us__inner {
    padding: 48px 0;
  }

  .about_us__inner-title .text {
    font-size: 32px;
  }

  .about_us__modal-content {
    max-width: calc(100% - 40px);
    border-radius: 18px;
  }

  .ceo-profile {
    padding: 48px 0;
  }

  .ceo-profile__inner {
    gap: 32px;
  }

  .ceo-profile__content {
    gap: 24px;
  }

  .milestones__item.milestones__item--content {
    gap: 16px;
  }

  .team__inner {
    padding: 48px 0;
  }

  .team__inner-title {
    max-width: 100%;
  }

  .team__item-avatar {
    min-height: 530px;
    height: 530px;
  }

  .footer-about-us__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 100px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .footer-about-us__left {
    max-width: 100%;
  }

  .footer-about-us__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 12px;
  }
}

@media screen and (max-width: 767px) {
  .hero__inner {
    padding: 36px 0;
    height: calc(100vh - 74px);
  }

  .hero__inner {
    padding: 24px 0;
    height: calc(100vh - 74px);
  }

  .hero__title .text {
    font-size: 72px;
  }

  .hero .hero__slider__item--first {
    display: none;
  }

  .about_us__inner {
    padding: 32px 0;
  }

  .about_us__inner-title .text {
    font-size: 28px;
  }

  .about_us__inner-description {
    max-width: 100%;
  }

  .about_us__modal-content {
    max-width: calc(100% - 20px);
    border-radius: 12px;
  }

  .about_us__modal-close {
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }

  .about_us__modal-close-icon {
    width: 18px;
    height: 18px;
  }

  .about_us__modal-volume {
    left: 16px;
    bottom: 16px;
    width: 40px;
    height: 40px;
  }

  .about_us__modal-volume-icon {
    width: 18px;
    height: 18px;
  }

  .ceo-profile {
    padding: 32px 0;
  }

  .ceo-profile__inner {
    gap: 24px;
  }

  .ceo-profile__image {
    aspect-ratio: 1/1;
    max-height: none;
    min-height: 40vh;
  }

  .ceo-profile__content {
    gap: 20px;
  }

  .lets_talk__inner .container--fluid {
    padding-left: 20px;
    padding-right: 20px;
  }

  .milestones__item-img {
    min-height: 420px;
  }

  .milestones__item-description {
    margin-top: 4px;
  }

  .milestones__item-description .text {
    font-size: 20px;
  }

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

  .team__inner-title .text {
    font-size: 30px;
  }

  .team__inner__slider-actions {
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .team__item-avatar {
    min-height: 420px;
    height: 420px;
  }

  .footer-about-us__inner {
    gap: 70px;
    padding: 14px 0;
  }
}

@media screen and (max-width: 575px) {
  .hero__title .text {
    font-size: 56px;
  }

  .milestones__item-img {
    min-height: 380px;
  }

  .team__item-avatar {
    min-height: 390px;
    height: 390px;
  }
}