* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: 'Poppins', sans-serif;
}
/* Common */
a {
  text-decoration: none;
}
.btn {
  display: inline-block;
  padding: 0 16px;
  color: #fff;
  text-align: center;
  font-weight: 600;
  min-width: 118px;
  line-height: 50px;
  border-radius: 24.5px;
  background: #171100;
}
.main-content {
  width: 1170px;
  max-width: calc(100% - 48px);
}
/* Header */
.header {
  background-color: #fffcf4;
}
.header.fixed {
  position: sticky;
  top: -28px;
}
.header .body {
  display: flex;
  align-items: center;
  padding: 36px 0 8px;
}
.nav ul {
  display: flex;
}
.nav {
  margin-left: auto;
}
.nav a {
  position: relative;
  padding: 8px 21px;
  color: #5f5b53;
}
.nav a:hover,
.nav li.active a {
  text-shadow: 1px 0 0 currentColor;
  color: #171100;
}

.nav li.active a::after {
  position: absolute;
  left: 21px;
  top: 31px;
  content: '';
  display: block;
  border-radius: 1px;
  background: #171100;
  width: 12px;
  height: 2px;
}
.header .sign-up-btn {
  margin-left: 49px;
  min-width: 144px;
}
