.res-stats {
  .container {
    .stats-top {
      display: flex;
      justify-content: space-between;
      gap: var(--spacing_medium);


      .stats-top-left {
        max-width: 650px;
        h2 {

        }
      }

      .stats-top-right {
        max-width: 450px;
        font-size: 16px;
        display: flex;

        p {
          margin: auto 0;
        }
      }

      @media screen and (max-width: 767px) {
        flex-direction: column;
        gap: 16px;
        .stats-top-right {
          max-width: 1000px !important;
        }


      }
    }

    .stats-bottom {
      display: flex;
      gap: var(--spacing_small);
      flex-wrap: wrap;
      justify-content: center;


      .stat-inner {
        max-width: 300px;

        @media screen and (max-width: 767px) {
          max-width: 450px !important;
        }
        p {
          text-align: center;
        }
        .stat-main {
          background: linear-gradient(45deg, var(--res3), var(--res4));
          -webkit-background-clip: text;
          -webkit-text-fill-color: rgba(0, 0, 0, 0);
          background-clip: text;
          color: rgba(0, 0, 0, 0);
          font-size: var(--h1_size);
          font-weight: 700;
        }

        .stat-heading {
          font-size: var(--h3_size);
          font-weight: 600;
          color: var(--res5);
        }
      }
    }
  }
}


footer {
  .footer-bottom {
    display: flex;
    justify-content: space-between;

    @media screen and (max-width: 992px) {
      flex-direction: column;
      gap: 12px;
    }
  }


  .footer-menu-bottom {
    ul {
      display: flex;
      gap: 12px;
      margin: 0;
    }
    li {
      list-style: none;

      &:not(:last-child) {
        padding-right: 12px;
        border-right: solid 1px #000;
      }
    }
  }
}