/* Footer CSS */

footer {
  background-color: #1e293b;

  color: rgb(255 255 255 / 1);
}

.footer_spacing {
  padding: 40px 48px;
}

.footer_cover {
  display: flex;

  gap: 10px;

  margin-bottom: 48px;
}

/* .footer_logo {
  display: flex;

  align-items: center;

  gap: 12px;

  font-weight: 700;

  font-size: 24px;

  line-height: 32px;

  font-family: Inter, system-ui, sans-serif;
} */
.footer_logo img {
  width: 100%;
  height: auto;
  max-width: 150px;
}
.footer_list p {
  max-width: 448px;

  margin-top: 24px;

  font-size: 16px;

  font-family: Inter, system-ui, sans-serif;

  line-height: 26px;
}

.footer_list ul {
  display: flex;

  flex-direction: column;

  gap: 16px;

  align-items: flex-start;

  justify-self: center;
}

li.footer_li a {
  transition-duration: 300ms;

  color: hsla(0, 0%, 100%, 0.8);

  font-family: Inter, system-ui, sans-serif;

  font-size: 16px;
}

.footer_width {
  width: 40%;
}

.footer_small_width {
  width: 20%;

  text-align: left;
}

.footer_bottom {
  padding-top: 32px;

  border-top: 1px solid hsla(0, 0%, 100%, 0.2);
}

.copyright_footer {
  color: hsla(0, 0%, 100%, 0.6);

  font-size: 14px;

  line-height: 20px;

  font-family: Inter, system-ui, sans-serif;
}

.footer_bottom {
  display: flex;

  justify-content: space-between;
}

.terms_footer {
  line-height: 20px;

  display: flex;

  gap: 24px;

  font-family: Inter, system-ui, sans-serif;

  font-size: 16px;
}

.terms_footer a {
  color: hsla(0, 0%, 100%, 0.6);
}

.terms_footer a:hover,
li.footer_li a:hover {
  color: #f97316;
}

@media (max-width: 1024px) {
  .footer_cover {
    display: flex;

    gap: 48px;

    /*align-items: unset;*/
  }
  li.footer_li a {
    font-size: 14px;
  }
}

@media (max-width: 912px) {
  .footer_spacing {
    padding: 64px 24px;
  }

  .footer_cover {
    flex-wrap: wrap;
  }

  .footer_list {
    width: calc(50% - 24px);

    text-align: unset;
  }

  .terms_footer {
    font-size: 14px;
  }
}

@media (max-width: 540px) {
  .footer_list {
    width: 100%;
  }

  .footer_bottom {
    flex-direction: column;

    gap: 16px;

    align-items: center;
  }
}
