.site-footer {
  background: linear-gradient(237.89deg, #183545 0%, #091922 100%);
  position: relative;
}
.site-footer::before {
  content: "";
  display: block;
  height: 6px;
  background: #F2D67A;
}

.footer-body {
  padding: 5rem 0 4rem;
}

.footer-inner {
  display: flex;
  gap: 5rem;
  align-items: flex-start;
}

.footer-left {
  width: 36%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.footer-logos__primary img {
  height: 62px;
  width: auto;
  display: block;
}
.footer-logos__secondary img {
  height: 62px;
  width: auto;
  display: block;
}

.footer-logos-sm {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: -0.75rem;
}
.footer-logos-sm img {
  height: 38px;
  width: auto;
  display: block;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F6F3F0;
  transition: color 200ms ease;
}
.footer-social a svg {
  width: 28px;
  height: 28px;
}
.footer-social a:hover {
  color: #A3D4F2;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-contact a {
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #A3D4F2;
  text-decoration: none;
  transition: opacity 200ms ease;
}
.footer-contact a:hover {
  opacity: 0.75;
}

.footer-mailing__label {
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #A3D4F2;
  margin: 0 0 0.85rem;
}
.footer-mailing form {
  width: 100%;
}
.footer-mailing input[type=email],
.footer-mailing input[type=text] {
  width: 100%;
  background: transparent;
  border: 1px solid #A3D4F2;
  color: #A3D4F2;
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 13px 16px;
  outline: none;
  box-sizing: border-box;
}
.footer-mailing input[type=email]::placeholder,
.footer-mailing input[type=text]::placeholder {
  color: rgba(163, 212, 242, 0.5);
  opacity: 1;
}
.footer-mailing input[type=submit],
.footer-mailing button[type=submit] {
  margin-top: 0.5rem;
  background: #F2D67A;
  color: #1F3642;
  border: none;
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 13px 22px;
  cursor: pointer;
  transition: opacity 200ms ease;
}
.footer-mailing input[type=submit]:hover,
.footer-mailing button[type=submit]:hover {
  opacity: 0.85;
}

.footer-right {
  flex: 1;
  min-width: 0;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
  margin-bottom: 3rem;
}

.footer-nav-col .footer-nav__heading {
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #F2D67A;
  margin: 0 0 1rem;
}
.footer-nav-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-nav-col li {
  margin-bottom: 0.45rem;
}
.footer-nav-col a {
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.55;
  color: #F3E9E0;
  text-decoration: none;
  transition: color 200ms ease;
}
.footer-nav-col a:hover {
  color: #A3D4F2;
}

.footer-territorial {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
}
.footer-territorial__label {
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #F2D67A;
  margin: 0 0 0.5rem;
}
.footer-territorial p {
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.65;
  color: #F6F3F0;
  margin: 0;
}

.footer-bottom {
  background: #10181D;
  padding: 0.9rem 0;
}
.footer-bottom p {
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: #D9D9D9;
  margin: 0;
  text-align: center;
}
.footer-bottom a {
  color: #D9D9D9;
  text-decoration: none;
  transition: color 200ms ease;
}
.footer-bottom a:hover {
  color: #F6F3F0;
}

@media screen and (max-width: 1024px) {
  .footer-inner {
    flex-direction: column;
    gap: 3rem;
  }
  .footer-left {
    width: 100%;
  }
  .footer-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .footer-nav-grid {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=footer.css.map */