footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #1f1f1f;
  padding: 50px 104px 100px;
}
footer .footer_ctr {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
footer .footer_ctr .footer_left .footer_logo {
  width: 90px;
  height: 40px;
}
footer .footer_ctr .footer_right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
footer .footer_ctr .footer_right ul {
  display: flex;
  gap: 15px;
  list-style: none;
}
footer .footer_ctr .footer_right ul li a {
  font-family: "Suisse Intl", sans-serif;
  font-weight: 450;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -1%;
  color: #fff;
  text-decoration: none;
}
footer .footer_ctr .footer_right .icon_ctr {
  display: flex;
  gap: 16px;
}
footer .copyright_text {
  margin-top: 64px;
  font-family: "Suisse Intl", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: -1%;
  text-align: center;
  color: #fff;
  width: 100%;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 50px 24px 100px;
  }
  footer .footer_ctr {
    flex-direction: column;
    align-items: flex-start;
  }
  footer .footer_ctr .footer_left {
    margin-bottom: 32px;
  }
  footer .footer_ctr .footer_right {
    align-items: center;
  }
  footer .footer_ctr .footer_right ul {
    width: 100%;
    flex-direction: column;
    gap: 16px;
  }
  footer .footer_ctr .footer_right ul li a {
    font-size: 16px;
  }
}/*# sourceMappingURL=footer.css.map */