.site-footer {
  background: rgba(var(--bg-color-5));
  color: rgba(var(--text-color-25));
  padding-top: 72px;
  padding-bottom: 32px;

  @media (max-width: 12024px) {
    padding-top: 50px;
  }

  /* @media (max-width: 768px) {
          padding-top: 16px;
    padding-bottom: 28px;
    } */

  .footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
  }

  /* Brand column */
  .footer-brand {
    max-width: 320px;

    .site-logo-img {
      margin-bottom: 16px;

      .custom-logo-link {
        display: inline-block;
      }

      img {
        max-width: 157px;
        height: auto;
      }
    }

    .footer-tagline {
      font-size: var(--font-26);
      line-height: 24px;
    }
  }
}

/* Link columns */
.footer-col {
  flex: 1 1 140px;
  max-width: 205px;
  font-size: var(--font-25);
  line-height: 120%;
  font-weight: 400;

  a {
    color: rgba(var(--text-color-1), 72%);
    text-decoration: none;
    transition: color 0.15s ease;

    &:hover {
      color: rgba(var(--text-color-10));
    }
  }

  .footer-col_title {
    color: rgba(var(--text-color-1));
    font-size: var(--font-25);
    line-height: 120%;
    font-weight: 600;
    letter-spacing: var(--letter-spacing-24);
    margin-bottom: 18px;
  }

  .footer-text {
    color: rgba(var(--text-color-1), 72%);
    text-decoration: none;
    transition: color 0.15s ease;
    margin-bottom: 11px;
  }

  ul {
    list-style: none;

    li {
      margin-bottom: 11px;

      &:last-child {
        margin-bottom: 0px;
      }
    }
  }
}

/* Bottom bar */
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 46px 0 25px;

  @media (max-width: 768px) {
    margin: 26px 0 25px;
  }
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: var(--font-26);
  line-height: 2;
  color: rgba(var(--text-color-18));
}

.footer-bottom__info {
  margin-top: 46px;

  .footer-bottom-info__des {
    display: flex;
    flex-direction: column;
    gap: 0px;
    justify-content: center;
    align-items: center;

    p {
      font-size: var(--font-26);
      line-height: 2;
      color: rgba(var(--text-color-18));
      text-align: center;
    }
  }
}

/* bottom cta */
.bottom__cta{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    gap: 28px;
  }

  .footer-brand,
  .footer-col {
    max-width: 100% !important;
    flex: auto !important;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: left;
  }

  .footer-bottom__info {
    margin-top: 26px;
  }
}
