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

body {
  color: #000;
  font-family: "roboto", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.home-page {
  display: flex;
  flex-direction: column;
}
.mobile-menu {
  display: none;
}
.home-page .header {
  padding: 64px 64px 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: url("../assets/background.png");
  background-size: 120%;
  background-position-x: 80%;
  background-color: #f5f5f5;
}
.home-page .header .logo {
  height: 44px;
  display: flex;
  align-items: center;
}
.home-page .header img {
  width: 405px;
  height: 37px;
}
.home-page .header .right-area a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}
.home-page .header .right-area a:first-child {
  margin-right: 32px;
}
.hamburger-menu {
  display: none;
}
.home-page .content {
  margin-bottom: 64px;
  padding: 24px 64px 0;
}
.home-page .content h1 {
  font-weight: 600;
  margin-bottom: 32px;
  font-size: 24px;
}
.home-page .content span {
  font-size: 14px;
}
.home-page .content ul {
  font-size: 14px;
  padding-top: 24px;
  padding-left: 24px;
}
.home-page .content ul span {
  margin-left: -24px;
}

.home-page .footer {
  padding: 0 64px;
  color: #9d9d9d;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 996px) {
  body {
    font-size: 20px;
  }
  .home-page .header {
    padding: 64px 24px 80px;
    background-position-x: 19%;
    background-size: 415%;
  }
  .home-page .header img {
    width: 240px;
    height: 35px;
  }
  .home-page .header .right-area {
    display: none;
  }
  .hamburger-menu {
    display: block;
  }
  .home-page .content {
    margin-bottom: 32px;
    padding: 32px 16px 0;
  }
  .home-page .content h1 {
    margin-bottom: 16px;
  }
  .home-page .footer {
    padding: 0 16px;
  }

  .home-page .header .hamburger-menu img {
    width: 32px;
    height: 32px;
  }
  .mobile-menu.show {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    padding: 64px 24px;
  }
  .mobile-menu .close-icon {
    text-align: end;
    height: auto;
  }
  .mobile-menu img {
    height: 32px;
    width: 32px;
  }
  .mobile-menu a {
    height: auto;
    text-align: left;
    padding: 32px 0;
    border-bottom: 1px solid #f0f1f2;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
  }
}
