/* ===== Footer ===== */
#footer-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: var(--dl-color-theme-accent1);
}

#footer-section .footer-primary-accent {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 142px 0 32px;
}

#footer-section .footer-primary-accent .footer-primary-main-accent {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  pointer-events: none;
  background-color: var(--color-font-accent);
  clip-path: polygon(0 0, 50% 10%, 100% 20%, 100% 100%, 0 100%);
}

#footer-section .footer-primary-accent .footer-primary-sub-accent {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  pointer-events: none;
  background-color: var(--dl-color-theme-primary2);
  clip-path: polygon(0 20%, 50% 10%, 100% 0, 100% 100%, 0 100%);
}

#footer-section .footer-content {
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 80%;
}

#footer-section .footer-content .content1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  color: var(--dl-color-theme-accent1);
}

#footer-section .footer-content .content1 .layout-content1,
#footer-section .footer-content .content1 .layout-content2 {
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

#footer-section .footer-content .content1 .layout-content3 {
  display: flex;
  flex-direction: column;
  width: 324px;
}

#footer-section .footer-content .content1 .layout-content1 .address {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#footer-section .footer-content .content1 .layout-content1 .title-content {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.15px;
}

#footer-section .footer-content .content1 .layout-content1 p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 200;
  line-height: 24px;
  letter-spacing: 0.5px;
}

#footer-section .footer-content .content1 .layout-content1 .mail-address {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#footer-section .footer-content .content1 .layout-content1 .mail-address .mail-tdi {
  display: flex;
  align-items: center;
}

#footer-section .footer-content .content1 .layout-content1 .mail-address .mail-tdi p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 200;
  line-height: 24px;
  letter-spacing: 0.5px;
}

#footer-section .footer-content .content1 .layout-content1 img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
}

#footer-section .footer-content .content1 .layout-content2 .about,
#footer-section .footer-content .content1 .layout-content2 .license {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#footer-section .footer-content .content1 .layout-content2 .title-content {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.15px;
}

#footer-section .footer-content .content1 .layout-content2 ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 200;
  letter-spacing: 0.25px;
}

#footer-section .footer-content .content1 .layout-content2 .img-lists {
  display: flex;
  align-items: center;
  gap: 16px;
}

#footer-section .footer-content .content1 .layout-content2 .img-lists img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

#footer-section .footer-content .content1 .layout-content3 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#footer-section .footer-content .content1 .layout-content3 .title-content {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.15px;
}

#footer-section .footer-content .content1 .layout-content3 .desc-layout-content3 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 200;
  line-height: 24px;
  letter-spacing: 0.5px;
}

#footer-section .footer-content hr {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

#footer-section .footer-content .content2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 20px;
  letter-spacing: 0.25px;
}

/* ===== Mobile ===== */
@media (max-width: 767px) {
  /* ===== Footer Mobile ===== */
  #footer-section .footer-primary-accent {
    padding: 100px 0 50px;
  }

  #footer-section .footer-primary-accent .footer-primary-main-accent {
    clip-path: polygon(0 0, 100% 2%, 100% 100%, 0 100%);
    margin-top: 28px;
  }

  #footer-section .footer-primary-accent .footer-primary-sub-accent {
    clip-path: polygon(0 2%, 100% 0, 100% 100%, 0 100%);
  }

  #footer-section .footer-primary-accent .footer-content {
    gap: 32px;
  }

  #footer-section .footer-primary-accent .footer-content .content1 {
    flex-direction: column;
    gap: 40px;
  }

  #footer-section .footer-content .content1 .layout-content1,
  #footer-section .footer-content .content1 .layout-content2 {
    width: 100%;
  }

  #footer-section .footer-content .content1 .layout-content3 {
    width: 100%;
    gap: 12px;
  }

  #footer-section .footer-content .content1 .layout-content1 .mail-address .mail-tdi p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 200;
    line-height: 24px;
    letter-spacing: 0.5px;
  }

  #footer-section .footer-content .content1 .layout-content1 .title-content {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.15px;
  }

  #footer-section .footer-content .content1 .layout-content1 p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    letter-spacing: 0.25px;
  }

  #footer-section .footer-content .content1 .layout-content1 .mail-address .mail-tdi p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
    letter-spacing: 0.25px;
  }

  #footer-section .footer-content .content1 .layout-content2 .title-content {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.15px;
  }

  #footer-section .footer-content .content1 .layout-content2 ul {
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    letter-spacing: 0.25px;
  }

  #footer-section .footer-content .content1 .layout-content2 .img-lists {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  #footer-section .footer-content .content1 .layout-content3 .title-content {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.15px;
  }

  #footer-section .footer-content .content1 .layout-content3 .desc-layout-content3 {
    gap: 16px;
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
    letter-spacing: 0.25px;
  }

  #footer-section .footer-content .content2 {
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
    letter-spacing: 0.25px;
  }
}

/* ===== Tablet or iPad ===== */
@media (min-width: 768px) and (max-width: 1024px) {
  #footer-section .footer-primary-accent {
    padding: 120px 0 40px;
  }

  #footer-section .footer-content {
    width: 90%;
  }

  #footer-section .footer-content .content1 .layout-content1 {
    max-width: 30%;
  }

  #footer-section .footer-content .content1 .layout-content2 {
    max-width: 30%;
  }

  #footer-section .footer-content .content1 .layout-content3 {
    max-width: 30%;
  }

  #footer-section .footer-content .content1 .layout-content1 p,
  #footer-section .footer-content .content1 .layout-content1 .mail-address .mail-tdi p,
  #footer-section .footer-content .content1 .layout-content2 ul,
  #footer-section .footer-content .content1 .layout-content3 .desc-layout-content3 {
    font-size: 14px;
    line-height: 22px;
  }

  #footer-section .footer-content .content1 .layout-content2 .img-lists {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  #footer-section .footer-content .content2 p,
  #footer-section .footer-content .content2 span a {
    font-size: 14px;
    line-height: 22px;
  }
}
