body {
  background-color: black;
}
.full-content .modal {
  min-height: 100%;
  background-color: white;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 2s;
  /* opacity: 0; */
  border-radius: 0px 0 24px 24px;
  padding: 16px;
}

.full-content .modal .header {
  padding: 8px;
}

.full-content .modal .header .logo {
  width: 25%;
}

.full-content .modal .header .logo svg {
  width: 140px;
  max-width: 100%;
}

.modal a {
  font-weight: 800;
  color: #FF8074;
}

.full-content .modal .header .exit {
  background-color: var(--color-gray-0);
  border-radius: 100px;
  width: 48px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 24px;
  right: 24px;
}

.full-content .modal h2 {
  padding: 0;
}

.full-content .modal .content h1 {
  padding: 112px 0 96px;
}

.full-content .modal .content .accordion {
  border-top: 1px solid var(--color-gray-0);
  padding-bottom: 32px;
}

.full-content .modal .content .accordion > div {
  border-bottom: 1px solid var(--color-gray-0);
  overflow: hidden;
}

.full-content .modal .content .accordion > div > div:first-child {
  padding: 24px 16px 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.full-content .modal .content .accordion > div > div:first-child h3 {
  padding: 0;
  line-height: 1;
}

.full-content .modal .content .accordion > div > div:first-child svg {
  transition: transform 0.8s;
}

.full-content .modal .content .accordion > div > div:nth-child(2) {
  height: 0;
  will-change: height;
}

.full-content .modal .content .accordion > div > div:nth-child(2) a, .full-content .modal .content .accordion > div > div:nth-child(2) button {
  font-weight: 800;
  color: #FF8074;
}

.full-content .modal .content .accordion > div.open > div:first-child svg {
  transform: rotate(180deg);
}

.full-content .modal .content .accordion > div.open > div:nth-child(2) {
  padding: 8px 0 32px;
  height: 100%;
}

.full-content .modal .content #terms, .full-content .modal .content #privacy {
  padding: 8px;
}

.full-content .modal .content #terms h1, .full-content .modal .content #privacy h1 {
  font-size: 48px;
}

@media screen and (min-width: 430px) {
  .full-content .modal .content #terms h1, .full-content .modal .content #privacy h1 {
    font-size: 64px;
  }
}

@media screen and (min-width: 768px) {
  .full-content .modal .content #terms h1, .full-content .modal .content #privacy h1 {
    font-size: 104px;
  }
  .full-content .modal .content .accordion > div > div:first-child {
    padding: 40px 16px 40px 0;
  }
  .full-content .modal .content .accordion > div.open > div:nth-child(2) {
    padding-bottom: 56px;
  }
}

@media screen and (min-width: 1076px) {
  .full-content .modal .content #terms h1, .full-content .modal .content #privacy h1 {
    font-size: 160px;
    line-height: 1;
  }
}

.full-content .modal .content #terms h3, .full-content .modal .content #privacy h3 {
  padding: 20px 0;
}

.full-content .modal .content #terms p, .full-content .modal .content #privacy p {
  padding-bottom: 12px;
}

@media screen and (min-width: 768px) {
  .full-content .modal .content #terms, .full-content .modal .content #privacy {
    padding: 40px;
  }
}

@media screen and (min-width: 768px) {
  .full-content .modal .header .exit {
    width: 80px;
    height: 60px;
  }
  .full-content .modal .header .exit svg {
    height: 16px;
    width: 16px;
  }
}

.full-content .modal.hidden {
  display: none;
  opacity: 1;
}

footer {
  color: white;
  padding: 72px 24px 40px;
  width: 100%;
}

footer h1 {
  padding-bottom: 16px;
}

footer > p {
  font-weight: 100;
  font-size: 16px;
  padding-right: 16px;
  max-width: 656px;
}

footer a, footer button {
  color: var(--color-gray-0);
  padding: 2px 0;
  display: block;
}

footer svg {
  padding-top: 4px;
}

footer .content {
  padding: 48px 0;
}

footer .content .mobile-footer {
  display: flex;
  gap: 48px;
  flex-direction: column;
}
@media screen and (min-width: 425px) {
  footer .content .mobile-footer {
    flex-direction: row;
  }
}

footer .content .mobile-footer > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
}

footer .content .mobile-footer > div > div {
  justify-content: flex-start;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

footer .content .medium-footer {
  display: none;
}

@media screen and (min-width: 768px) {
  footer {
    padding: 104px 32px;
  }

  footer .content .mobile-footer {
    display: none;
  }

  footer .content .medium-footer {
    display: flex;
    gap: 24px;
  }

  footer .content .medium-footer > div {
    width: 25%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  footer .content .medium-footer > div h4 {
    font-size: 20px;
    padding-bottom: 4px;
  }

  footer .content .medium-footer > div .resource-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
}

@media screen and (min-width: 1024px) {
  footer {
    padding: 160px 104px 104px;
  }
  footer .content {
    padding: 88px 0;
  }
}
