.footy {
  background-color: white;
}

.footy__top {
  padding: var(--xl-gap-y) var(--xl-gap-x) calc(var(--xl-gap-y) + 2*var(--gap))  var(--xl-gap-x);
  color: white;
  position: relative;
  background-color: var(--teal);
  overflow: hidden;
}

.footy__top::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='484' height='93' viewBox='0 0 484 93' fill='none'%3E%3Cg clip-path='url(%23clip0_1192_10452)'%3E%3Cpath d='M-55.8071 142.41L226.889 431.604L608.873 299.909C608.873 299.909 580.379 76.7129 312.381 8.82489C112.216 -41.8725 -55.8071 142.41 -55.8071 142.41Z' fill='%23E6F3AE'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1192_10452'%3E%3Crect width='484' height='93' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  position: absolute;
  bottom: -10px;
  right: 10vw;
  @media (max-width: 768px) {
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
  }
}

.footy__top-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
  @media (min-width: 1025px) {
    max-width: 450px;
  }
}

.footy__top-left img {
  filter: brightness(0) invert(1);
  @media (max-width: 768px) {
    max-width: 280px;
  }
}

.footy__top-right {
  @media (min-width: 1281px) {
    padding: 0 calc(3*var(--xl-gap-x)) 0 var(--xl-gap-x);
  }
}

.footy__bottom {
  font: var(--tiny);
  color: var(--teal);
  padding: var(--gap) var(--xl-gap-x);
}

.footy__wrap {
  max-width: var(--xl-width);
  margin: 0 auto;
  display: flex;
  gap: 3rem 5rem;
  justify-content: space-between;
  @media (max-width: 1024px) {
    flex-direction: column;
  }
}

.footy__bottom .footy__wrap {
  justify-content: center;
  align-items: center;
  position: relative;
  @media (min-width: 769px) {
    padding: 0 var(--xl-gap-x);
  }
}

.footy__logo {
  @media (min-width: 769px) {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}