
/* ---- Footer Section ---- */
.footer-section {
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-top: 48px;
  }
  .dot1 {
    width: 6px;
    height: 6px;
    background-color: #00ffd1;
  }
  .dot4 {
    display: none;
  }
  .footer ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 32px;
  }
  .footer ul li {
    font-family: 'Sora';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    color: #00ffd1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
  }
  .footer ul li a {
    color: #00ffd1;
  }
  .footer-icon {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin: 48px 0;
  }
  .footer-icon i {
    color: #bfbfbf;
    margin-top: 5px;
    background: #000000;
  }
  
  .footer-text {
    font-family: 'Sora';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    color: #bfbfbf;
      padding-bottom: 24px;
  }
  @media (max-width: 767px) {
    .footer-section {
      width: 100%;
      z-index: 1;
      padding: 20px 0;
    }
    .footer ul {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: start;
      gap: 10px;
    }
    .dot1 {
      width: 4px;
      height: 4px;
      background-color: #00ffd1;
    }
    .dot4 {
      display: block;
      width: 4px;
      height: 4px;
      background-color: #00ffd1;
    }
    .footer ul li {
      font-family: 'Sora';
      font-style: normal;
      font-weight: 400;
      font-size: 18px;
      line-height: 26px;
      color: #00ffd1;
      display: flex;
      justify-content: start;
      align-items: center;
      gap: 10px;
    }
    .footer-icon {
      display: flex;
      justify-content: center;
      gap: 24px;
      margin: 30px 0;
    }
    .footer-text {
      margin-top: 0;
      font-size: 13px;
      line-height: 16px;
    }
  }
  
  @media (min-width: 768px) and (max-width: 1024px) {
    .footer ul {
      gap: 20px;
      width: 100%;
    }
    .footer ul li {
      gap: 20px;
    }
  }