* {
  height: 100%;
  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 {
  padding: 64px 64px 56px;
  display: flex;
  flex-direction: column;
  background-image: url("../assets/background.png");
  background-position: center;
  background-size: 120%;
  background-position-x: 80%;
}
.mobile-menu {
  display: none;
}
.home-page .header {
  flex: 1;
}
.home-page .header .logo {
  height: 44px;
  display: flex;
  align-items: center;
}
.header-area {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  height: auto;
}
.home-page .header img {
  width: 405px;
  height: 37px;
}
.home-page .header .right-area {
  height: auto;
}
.home-page .header .right-area a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}
.hamburger-menu {
  display: none;
}
.home-page .header .right-area a:first-child {
  margin-right: 32px;
}

.home-page .content {
  height: auto;
  margin-bottom: 64px;
}

.home-page .footer {
  color: #9d9d9d;
  font-size: 16px;
  font-weight: 500;
  height: auto;
}

@media (max-width: 996px) {
  body {
    font-size: 20px;
  }
  .home-page {
    padding-right: 16px;
    padding-left: 16px;
    background-size: 400%;
    background-position-x: 150%;
  }
  .header {
    display: flex;
    padding: 0 8px;
  }
  .home-page .header .header-area {
    align-items: start;
  }
  .home-page .header img {
    width: 240px;
    height: 35px;
  }
  .home-page .header .right-area {
    display: none;
  }
  .home-page .content {
    margin-bottom: 32px;
  }
  .hamburger-menu {
    display: block;
    margin-top: 4px;
  }
  .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;
  }
}
