/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: whitesmoke;
    font-size: 14px;
    position: relative;
    padding-left: 15px; /* Reduced padding on left */
    padding-right: 15px; /* Reduced padding on right */
  }

  .footer .footer-top {
    padding-top: 50px;
    padding-left: 0; /* Remove any left padding */
    padding-right: 0; /* Remove any right padding */
  }

  .footer .container {
    max-width: 100%; /* Allow the container to stretch */
    padding-left: 15px; /* Reduced padding on left */
    padding-right: 15px; /* Reduced padding on right */
  }

  .footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
  }

  .footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px;
  }

  .footer .footer-about .logo span {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
  }

  .footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
  }

  .footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-right: 10px;
    transition: 0.3s;
  }

  .footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
  }

  .footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
  }

  .footer .footer-links {
    margin-bottom: 30px;
  }

  .footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
  }

  .footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
  }

  .footer .footer-links ul li:first-child {
    padding-top: 0;
  }

  .footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: inline-block;
    line-height: 1;
  }

  .footer .footer-links ul a:hover {
    color: var(--accent-color);
  }

  .footer .footer-contact p {
    margin-bottom: 5px;
  }

  .footer .copyright {
    padding: 25px 0;
    border-top: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .footer .copyright p {
    margin-bottom: 0;
  }

  .footer .credits {
    margin-top: 8px;
    font-size: 13px;
  }

  .footer-list {
    padding-left: 0 !important;
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }

  .footer-list li {
    margin-bottom: 2px !important;
    padding: 5px 0;
  }

  .footer-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
  }

  .footer-toggle i {
    margin-left: auto;
  }

  @media (max-width: 767px) {
    .footer-links {
        margin-bottom: 10px !important;
    }

  .g-4, .gy-4 {
    --bs-gutter-y: 0 !important;
  }

  }

  @media (min-width: 768px) {
    .footer-toggle i {
        display: none;
    }
    .footer-list {
        display: block !important;
    }
  }
