.hero-section {
  padding: 50px 0;
  position: relative;
  min-height: 790px;
  align-content: center;
  padding-bottom: 50px; }
  @media (max-width: 992px) {
    .hero-section {
      min-height: 540px;
      padding-top: 25px;
      padding-bottom: 25px; } }
  .hero-section .hero-title {
    font-size: var(--typo-h1);
    line-height: var(--lh-h1);
    font-weight: var(--fw-h1);
    letter-spacing: var(--ls-h1);
    /* Mobile styles (under 992px) */
    position: relative;
    z-index: 99999;
    color: var(--white); }
    @media (max-width: 992px) {
      .hero-section .hero-title {
        font-size: var(--typo-h1-m); } }
    @media (max-width: 992px) {
      .hero-section .hero-title {
        position: relative;
        bottom: -75px; } }
    .hero-section .hero-title .highlight {
      color: var(--primary); }
  .hero-section .btn-warning {
    display: inline-block;
    z-index: 9999;
    position: relative; }
    @media (max-width: 992px) {
      .hero-section .btn-warning {
        bottom: -125px; } }
  .hero-section .hero-counters ul {
    padding-top: 30px;
    min-height: 560px;
    list-style: none;
    padding-left: 0; }
    [dir="rtl"] .hero-section .hero-counters ul {
      padding-left: null;
      padding-right: 0; }
    @media (max-width: 992px) {
      .hero-section .hero-counters ul {
        justify-content: space-between;
        min-height: auto;
        display: flex;
        position: relative;
        bottom: -125px; }
        .hero-section .hero-counters ul li {
          margin: 0; }
        .hero-section .hero-counters ul li + li {
          margin: 0; } }
    .hero-section .hero-counters ul li {
      margin-bottom: 60px;
      text-align: var(--left); }
      @media (max-width: 992px) {
        .hero-section .hero-counters ul li {
          margin-bottom: 0px; } }
      .hero-section .hero-counters ul li small {
        font-size: var(--typo-small-text);
        line-height: var(--lh-small-text);
        font-weight: var(--fw-small-text);
        letter-spacing: var(--ls-small-text);
        /* Mobile styles (under 992px) */
        color: var(--white); }
        @media (max-width: 992px) {
          .hero-section .hero-counters ul li small {
            font-size: var(--typo-small-text-m); } }
  .hero-section .hero-counters strong {
    font-size: var(--typo-text);
    line-height: var(--lh-text);
    font-weight: var(--fw-text);
    letter-spacing: var(--ls-text);
    /* Mobile styles (under 992px) */
    color: var(--primary); }
    @media (max-width: 992px) {
      .hero-section .hero-counters strong {
        font-size: var(--typo-text-m); } }
  .hero-section .hero-counters li + li {
    margin-top: 20px; }
  .hero-section .orbital-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    z-index: 0; }
    @media (max-width: 992px) {
      .hero-section .orbital-wrapper {
        transform: translate(-50%, -50%) scale(50%);
        overflow: hidden;
        transform-origin: center center; } }
  .hero-section .orbit {
    position: absolute;
    top: 0;
    left: 0;
    width: 95%;
    height: 95%;
    background-image: url(../../assets/images/icons/circle-3.svg);
    background-size: contain;
    animation: rotate 12s linear infinite;
    background-repeat: no-repeat; }
  .hero-section .orbit1 {
    animation: rotate1 12s linear infinite;
    top: 50%;
    left: 50%; }
  .hero-section .orbit2 {
    width: 560px;
    height: 560px;
    top: 70px;
    left: 70px;
    animation-duration: 16s;
    background-image: url(../../assets/images/icons/circle-2.svg); }
    .hero-section .orbit2 .dot {
      top: 20%;
      left: 10%; }
  .hero-section .orbit3 {
    width: 370px;
    height: 370px;
    top: 165px;
    left: 165px;
    animation-duration: 20s;
    background-image: url(../../assets/images/icons/circle-1.svg); }
    .hero-section .orbit3 .dot {
      top: 100%;
      left: 50%; }
  .hero-section .dot {
    position: absolute;
    top: 50%;
    left: 100%;
    width: 40px;
    height: 40px;
    background-image: url(../../assets/images/icons/ball.svg);
    background-size: 100%;
    transform: translate(-50%, -50%); }
@keyframes rotate {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
@keyframes rotate1 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg); }
  100% {
    transform: translate(-50%, -50%) rotate(360deg); } }
