:root {
  --ta-footer-blue: #2786d8;
  --ta-footer-orange: #fd9d30;
  --ta-footer-text: #000000;
  --ta-footer-muted: #ededed;
  --ta-footer-white: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

.footer p {
  margin: 0;
}

.footer {
  background: var(--ta-footer-white);
  padding-block: 5rem;
  padding-bottom: 10rem;
}

.footer-fixed-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
  padding: 0.5rem;
  background: var(--ta-footer-blue);
  box-shadow: 0 -0.25rem 0.75rem #0000001a;
}

.footer-fixed-cta__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.footer-fixed-cta__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 4rem;
  padding: 0.5rem 0.75rem;
  border: 0.25rem solid var(--ta-footer-white);
  border-radius: 10px;
  text-decoration: none;
}

.footer-fixed-cta__button--mail {
  background: var(--ta-footer-orange);
  color: var(--ta-footer-white);
}

.footer-fixed-cta__button--phone {
  background: var(--ta-footer-white);
  color: var(--ta-footer-text);
}

.footer-fixed-cta__button--mail:hover {
  color: var(--ta-footer-white);
}

.footer-fixed-cta__button--phone:hover {
  color: var(--ta-footer-text);
}


.footer-fixed-cta__icon {
  display: block;
  width: 3rem;
  height: auto;
  flex: 0 0 auto;
}

.footer-fixed-cta__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-fixed-cta__text p {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.footer__brand {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.footer__row {
  row-gap: 1rem;
}

.footer__tag {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--ta-footer-blue);
  color: var(--ta-footer-white);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.footer__tag p {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

.footer__logo {
  display: block;
  width: auto;
  height: auto;
}

.footer__details {
  margin-bottom: 1.5rem;
}

.footer__details-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  white-space: normal;
}

.footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 3rem;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  background: var(--ta-footer-orange);
  width: 100%;
  max-width: 430px;
  margin-top: 2.5rem;
  box-shadow: 0 0.25rem 0.75rem #0000001f;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.footer__cta-icon {
  display: block;
  width: auto;
  height: auto;
}

.footer__cta-text p {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ta-footer-white);
}

.footer__cta:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 0.5rem 1rem #00000026;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  transition: 0.2s;
}

.footer__link-text p {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.footer__nav-row + .footer__nav-row {
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .footer {
    padding-bottom: 5rem;
  }

  .footer__details-text {
    font-size: 1.125rem;
  }
  .footer__company-col {
    padding-right: 3rem;
  }

  .footer__nav-col {
    border-left: 4px solid var(--ta-footer-muted);
    padding-left: 3rem;
  }

  .footer__nav-row + .footer__nav-row {
    margin-top: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .footer__brand {
    align-items: center;
    flex-direction: row;
    gap: 1rem;
  }
}
