@charset "utf-8";

#footer {
  padding: 80px 0;
  background: #111111;
}

#footer .footer_wrap {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

#footer .footer_left {
  flex: 1;
}

#footer .footer_logo {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}

#footer .footer_desc {
  margin-top: 20px;
  font-size: 16px;
  color: rgba(255, 255, 255, .6);
}

#footer .footer_right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

#footer .footer_menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

#footer .footer_menu a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, .7);
}

#footer .footer_menu a:hover {
  color: var(--point-color);
}

#footer .copyright {
  margin-top: 28px;
  font-size: 14px;
  color: rgba(255, 255, 255, .4);
}

@media (max-width: 767px) {

  #footer {
    padding: 60px 0;
  }

  #footer .footer_wrap {
    flex-direction: column;
    gap: 40px;
  }

  #footer .footer_logo {
    font-size: 28px;
  }

  #footer .footer_right {
    align-items: flex-start;
  }

  #footer .footer_menu {
    flex-wrap: wrap;
    gap: 16px 20px;
  }

}