footer {
  border-top: 1px solid rgba(0,0,0,.1);
  background: var(--pokpok-color-white);
  padding: 40px 0 0;
  font-size: 1rem;
  position: relative;
  margin-top: 50px;
}
.grey_background + footer {
  border-top: 0;
}

footer .frog {
  position: absolute;
  top: -68px;
  right: 17%;
  height: 80px;
  width: 80px;
}

footer .logo, footer .wrapper {
  max-width: 1080px;
  padding: 0 calc(calc(100% - 1080px) / 2);
}
footer .logo img {
  height: 52px;
  display: block;
}

footer .wrapper {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-bottom: 40px;
}
footer .center_small {
  width: 250px;
}

footer .sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px 20px;
}

footer .columns {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  grid-gap: 20px 10px;
  border-top: 1px solid rgba(0,0,0,.1);
  padding: 30px 20px;
}
footer .columns.bath {
  margin-top: -200px;
  border-top: 0;
  padding: 0 10px;
  align-items: flex-end;
}

footer .links > h6 {
  font-size: 1em;
  margin-bottom: .8em;
}
footer .links > a {
  color: var(--pokpok-color-blue);
  text-decoration: none;
  font-family: var(--pokpok-font-light);
  display: block;
  line-height: 1.4em;
}
footer .links > a:hover {
  text-decoration: underline;
}
footer .social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
footer .social a {
  display: inline-flex;
  height: 2rem;
  width: 2rem;
  background: var(--pokpok-color-blue);
  border-radius: 100px;
  align-items: center;
  justify-content: center;
  margin: .3rem;
  outline: none;
  transition: box-shadow .15s;
}
footer .social a:focus-visible {
  box-shadow: 0 0 0 3px rgba(0,0,0,.3);
}
footer .social a img {
  height: 1rem;
  width: 1rem;
}

footer .form_container {
  margin: 50px 0 0;
}
footer .form_container > span {
  color: var(--pokpok-color-blue);
  font-family: var(--pokpok-font-light);
  font-size: .8em;
  line-height: 1.3em;
  display: block;
}

footer ul {
  margin: 5px 0 20px;
  padding-left: 1em;
}

footer .bathtub {
  width: 300px;
  overflow: hidden;
}
footer .bathtub video {
  transform: translateY(20%);
}

footer .attribution {
  font-size: .95rem;
  font-family: var(--pokpok-font-light);
  color: var(--pokpok-color-black);
  text-align: center;
}
footer .bath .attribution {
  font-family: var(--pokpok-font-regular);
  color: var(--pokpok-color-blue);
  font-size: 1.2rem;
  padding-bottom: 26px;
  line-height: 1em;
}
footer .attribution span {
  display: block;
}
footer .attribution a {
  font-size: .95rem;
  font-family: var(--pokpok-font-light);
  color: var(--pokpok-color-black);
  text-decoration: none;
}
footer .attribution a:hover {
  text-decoration: underline;
}
footer .attribution a img {
  vertical-align: middle;
}

footer .coppa {
  margin: 30px 0 10px;
}
footer .coppa a {
  display: inline-block;
}
footer .coppa img {
  height: 40px;
  display: block;
}

footer .legal {
  font-size: .8rem;
  opacity: .6;
  text-align: right;
  line-height: 1.4em;
  padding-bottom: 10px;
}
footer .legal span {
  display: block;
}
footer .legal a,
footer .legal_links a {
  text-decoration: none;
  color: inherit;
}
footer .legal a:hover,
footer .legal_links a:hover {
  text-decoration: underline;
}
footer .legal_links {
  font-size: .95rem;
  color: var(--pokpok-color-black);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
footer .legal_links > * {
  margin: 4px 14px;
}

footer .legal_info {
  font-size: .7rem;
  text-align: right;
  line-height: 1.4em;
}

@media (max-width: 1142px) {
  footer .logo, footer .wrapper {
    padding: 0 32px;
  }
}
@media (max-width: 900px) {
  footer {
    margin-top: 50px;
  }
  footer .bathtub {
    display: none;
  }
  footer .columns {
    margin-top: 30px;
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
  footer .columns.bath {
    margin-top: 30px;
    grid-template-columns: auto;
    grid-gap: 0;
  }
  footer .legal_links {
    justify-content: center;
    grid-row: 2;
    margin: 16px 0;
  }
  footer .legal_info {
    text-align: center;
  }
  footer .legal {
    text-align: center;
    padding-bottom: 20px;
  }
  footer .bath .attribution {
    padding-bottom: 20px;
  }
  footer .frog {
    top: -50px;
    right: calc(50% - 30px);
    height: 60px;
    width: 60px;
  }
}
@media (max-width: 700px) {
  footer .logo img {
    height: 35px;
  }
  footer .wrapper {
    grid-template-columns: 1fr;
  }
  footer .sections {
    gap: 10px 0;
    margin: 20px 0;
  }
  footer .center_small {
    text-align: center;
    margin: auto;
  }
  footer .coppa {
    text-align: center;
  }
  footer .social {
    justify-content: center;
  }
  footer .form_container {
    margin: 20px 0 0;
  }
}
