:root {
  --padding: 1rem;
  --font-size-1: 1.8rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  display: block;
  text-decoration: none;
  color: #000;
}

li {
  list-style: none;
}

img {
  display: block;
}

body, html {
  font-size: 1.1rem;
  background: white;
  color: black;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.container {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 5rem;
  z-index: 4;
}
header .container {
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
header .container .text-wap {
  background: black;
  color: white;
  text-align: center;
  font-size: 1.2rem;
  padding: 0.5rem;
  text-transform: uppercase;
}
header .container .icon-wrap {
  background: white;
  width: 100%;
  display: flex;
  align-items: center;
}
header .container .icon-wrap .left-icon,
header .container .icon-wrap .right-icon {
  display: flex;
  padding: 1rem;
}
header .container .icon-wrap .left-icon img,
header .container .icon-wrap .right-icon img {
  width: 3rem;
  height: 3rem;
  margin-right: 1rem;
}
header .container .icon-wrap .left-icon img:last-child,
header .container .icon-wrap .right-icon img:last-child {
  margin-left: 0;
}
header .container .icon-wrap .logo-wrap {
  flex: 1;
  padding: 0.5rem 0;
  display: flex;
  justify-content: center;
}
header .container .icon-wrap .logo-wrap img {
  max-width: 15rem;
  height: auto;
  max-height: 4rem;
}
header .container nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 3;
}
header .container nav.open {
  display: flex;
}
header .container nav ul {
  margin-top: 4rem;
  width: 100%;
  height: 100%;
}
header .container nav ul li {
  display: block;
}
header .container nav ul li a {
  display: block;
  padding: 1rem 1rem 0 1rem;
}
header .container nav ul li a img {
  width: 100%;
  border-radius: 5px;
}
header .container nav .menu-title {
  font-size: var(--font-size-1);
  position: absolute;
  left: 1rem;
  top: 1rem;
}
header .container nav .close-icon {
  position: absolute;
  right: 1rem;
  top: 1.5rem;
}
header .container nav .close-icon img {
  width: 2rem;
  height: 2rem;
}

main {
  margin-top: 8rem;
}
main .container .top-title {
  padding: 3rem 1rem 1rem 1rem;
  font-size: 1.8rem;
  text-transform: uppercase;
}
main .container .content-wrap {
  padding: 0 1rem 5rem 1rem;
  line-height: 1.8;
}
main .container .content-wrap .title {
  font-size: 1.4rem;
  font-weight: 400;
  margin: 1rem 0;
  padding-top: 1.5rem;
  margin-top: 2rem;
}
main .container .content-wrap .title:first-child {
  margin-top: 0;
}
main .container .content-wrap .sub-title {
  font-weight: 400;
  margin: 1rem 0;
}
main .container .content-wrap .desc p {
  margin-bottom: 1rem;
}
main .container .content-wrap .desc ul {
  padding-left: 2rem;
  margin-bottom: 1rem;
}
main .container .content-wrap .desc ul li {
  padding-top: 1rem;
  list-style: disc;
}
main .container .content-wrap .desc:first-child {
  margin-top: 0;
}

footer .container {
  background: #000;
  color: white;
  padding: 3rem 2rem 2rem 2rem;
}
footer .container .footer-content {
  width: 100%;
  line-height: 1.8;
}
footer .container .footer-content .classify-wrap ul,
footer .container .footer-content .help-wrap ul {
  display: none;
}
footer .container .footer-content ul {
  margin: 1rem 0;
}
footer .container .footer-content ul li {
  padding: 0.5rem 0;
  color: white;
}
footer .container .footer-content ul li a {
  display: block;
  color: white;
  padding-left: 1rem;
  line-height: 2;
}
footer .container .footer-content .title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  margin-bottom: 5px;
  border-bottom: 1px solid #333;
}
footer .container .footer-content .title-wrap .title {
  font-weight: 400;
  padding: 0.5rem 0;
}
footer .container .footer-content .title-wrap img {
  height: 1.5rem;
}
footer .container .footer-content .footer-bottom-wrap {
  text-align: center;
  padding: 2rem 0 2rem 0;
  font-size: var(--font-size-4);
  color: white;
}
footer .container .footer-content .footer-bottom-wrap .title {
  font-weight: 400;
  padding: 0.5rem 0;
  text-align: left;
}
footer .container .footer-content .footer-bottom-wrap img {
  width: 90%;
  margin-bottom: 1rem;
}
footer .container .footer-content .footer-bottom-wrap .social-wrap {
  display: flex;
  margin-bottom: 1rem;
}
footer .container .footer-content .footer-bottom-wrap .social-wrap img {
  width: 2.5rem;
  margin-right: 1rem;
}
footer .container .footer-content .footer-bottom-wrap .copyright {
  margin-top: 3rem;
  color: white;
}/*# sourceMappingURL=information.css.map */