@charset "utf-8";

#footer {
  padding: 80px 0 46px;
  background: #0b0b0b;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

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

#footer .footer_logo {
  display: inline-flex;
  align-items: center;
}

#footer .footer_logo img {
  height: 32px;
  display: block;
}

#footer .footer_desc {
  margin-top: 18px;
  color: rgba(255, 255, 255, .55);
  font-size: 15px;
  line-height: 1.7;
}

#footer .footer_links {
  display: flex;
  gap: 80px;
}

#footer .footer_col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 120px;
}

#footer .footer_col strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

#footer .footer_col a {
  color: rgba(255, 255, 255, .55);
  font-size: 14px;
  font-weight: 500;
}

#footer .footer_col a:hover {
  color: #4da750;
}

#footer .footer_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 70px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

#footer .copyright {
  color: rgba(255, 255, 255, .38);
  font-size: 14px;
}

#footer .footer_admin {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  justify-content: end;
}

#footer .footer_admin a {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

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

@media (max-width: 767px) {
  #footer {
    padding: 60px 0 36px;
  }

  #footer .footer_logo img {
    height: 28px;
  }

  #footer .footer_wrap,
  #footer .footer_bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  #footer .footer_wrap {
    gap: 46px;
  }

  #footer .footer_links {
    flex-direction: column;
    gap: 36px;
  }

  #footer .footer_bottom {
    gap: 18px;
    margin-top: 50px;
  }
}