footer {
  background: var(--brand-secondary-color);
  font-size: 0.85rem;
  line-height: 23px;
  padding: 60px 0 25px 0;
}
footer * {
  color: var(--white);
}

footer a.button {
  font-size: 0.85rem;
  padding: 8px 22px;
  height: fit-content;
  width: fit-content;
}

.footer-logo {
  object-fit: contain;
  max-width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
}
.footer-title {
  font-size: 17px;
  font-weight: bold;
  text-transform: uppercase;
  font-style: normal;
  line-height: 1.25em;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--brand-accent-color);
}
.footer-social-link{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  transition: filter 0.3s ease;
}
.footer-social-link:hover, .footer-social-link:focus {
  filter: invert(1) brightness(1.5);
}
.footer-social-link img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.footer-bottom {
  border-top: 1px solid var(--brand-secondary-color-text);
  padding-top: 25px;
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
}

.footer-legal ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-self: flex-end;
  align-self: end;
}

.footer-legal ul li:not(:last-child)::after {
  content: '|';
  margin: 0 15px;
}


@media (max-width: 768px) {
  
  .footer-legal ul {
    justify-self: center;
  }
}


.site-footer {
  background: var(--brand-secondary-color);
  padding: 72px 0 28px;
  font-size: 1.1rem;
  line-height: 1.6;
  position: relative;
}

.custom-shape-divider {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.custom-shape-divider--top {
  top: 0;
  transform:rotate(180deg);
}
.custom-shape-divider--bottom{
  transform:none!important;
}

.custom-shape-divider svg {
  display: block;
  width: 100%;
  height: 28px;
}

.custom-shape-divider path {
  fill: #fff;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
  transition: all .3s ease;
}

.site-footer a:hover {
  color: var(--brand-accent-color);
  transition: all .3s ease;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: start;
}

.site-footer__logo {
  max-width: 255px;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.site-footer__title,
.site-footer__heading {
  margin: 0 0 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 15px;
}

.site-footer__intro p,
.site-footer__text,
.site-footer__newsletter p{
  margin: 0;
}

.site-footer__disclaimer p{
  text-align: center;
  font-size: 13px;
  margin: 0;
}

.site-footer__text a {
  word-break: break-word;
}

.site-footer__cta {
  margin-top: 20px;
  text-align: center;
}

/* .site-footer__cta a.btn.accent{
  font-size: 0.8em;
} */

.site-footer__cta a:hover{
  color: var(--white)!important;
}

.site-footer__social {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  align-items: center;
  justify-content: center;
}

.site-footer__social-link img {
  width: 22px;
  height: 22px;
  display: block;
  border-radius: 0;
}

.site-footer__links,
.site-footer__legal ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__extras {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(160, 197, 25, 1);
  text-align: center;
  margin-bottom: 35px;
}

.site-footer__grid {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(160, 197, 25, 1);
}

.site-footer__button,
.site-footer__latest-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.site-footer__latest img{
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.site-footer__disclaimer {
  margin-top: 25px;
  padding-top: 15px;
  font-size: 14px;
}

.site-footer__disclaimer p + p {
  margin-top: 10px;
}

.site-footer__bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(160, 197, 25, 1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.site-footer__copyright {
  margin: 0;
}

.site-footer__legal li{margin: 0.5rem 0;}

.site-footer__legal ul {
  display: flex;
  gap: 20px;
}

.site-footer__newsletter .btn.accent{
  margin-top: 20px;
}

@media (max-width: 1200px) {

}

@media (max-width: 991px) {
  .site-footer__extras {
    grid-template-columns: 1fr 1fr;
  }
  
  .site-footer__grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 56px 0 24px;
    text-align: center;
  }

  .site-footer__grid,
  .site-footer__extras,
  .site-footer__bottom {
    grid-template-columns: 1fr;
    display: grid;
    gap: 10px;
  }

  .site-footer__bottom {
    justify-content: start;
  }

  .site-footer__legal ul {
    display: grid;
    gap: 10px;
  }

  .footer-title{
    margin: 20px 0 10px;
  }

  .site-footer__legal ul{
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  .site-footer__legal li{
    margin: 0 10px;
    width: max-content;
  }

  .site-footer__logo{margin: 0 auto 20px;}
}

@media (max-width: 576px) {

}

@media (max-width: 400px) {
  
}