body,
h1,
h2,
h3,
h4,
p,
ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

button {
  outline: none;
  background: #fff;
  border: none;
  font-family: inherit;
}

html {
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #1e2125;
  font-size: 16px;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

header {
  background: #2C3134;
}

.header-content {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 0 24px 0;
  display: flex;
  justify-content: space-between;
}

.mobile-header {
  display: none;
}

.left-header, .right-header {
  display: flex;
  height: 64px;
  align-items: center;
}

.left-header a.logo,
.left-header a.logo:link,
.left-header a.logo:visited,
.left-header a.logo:hover {
  text-decoration: none;
  color: #FFFFFF;
}

.left-header .logo {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 16px;
}

.left-header .logo h1 {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 39px;
  /* identical to box height */
  letter-spacing: -1.3px;
  color: #FFFFFF;
}

.left-header .logo h1 span {
  font-weight: 400;
}

.left-header .nav-links {
  margin-left: 59px;
  display: flex;
  align-items: center;
  
  gap: 40px;

  height: 100%;
}

.left-header .nav-link {
  font-family: Inter;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;

  color: #FFFFFF;
  
  text-decoration: none;
}

.left-header .nav-link.current {
  color: #F65E72;
}

.left-header .nav-link > a {
  text-decoration: none;
}

.left-header .nav-link > a:link,
.left-header .nav-link > a:visited,
.left-header .nav-link > a:hover {
  text-decoration: none;
  color: #FFFFFF;
}

.left-header .nav-link.current > a:link,
.left-header .nav-link.current > a:visited,
.left-header .nav-link.current > a:hover {
  text-decoration: none;
  color: #F65E72;
}

.right-header .social-links {
  display: flex;
  height: 100%;
  align-items: center;
  margin-right: 40px;
}

.right-header .social-links a {
  display: block;
  width: 24px;
  height: 24px;
}

.right-header .social-links a:not(:last-child) {
  margin-right: 27px;
}

.right-header > a {
  text-decoration: none;
}

.right-header .download-button {
  width: 162px;
  height: 48px;
  border-radius: 36px;
  background: linear-gradient(90deg, #E24A71 0%, #FB5E50 100%);

  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.3px;

  color: #FFFFFF;

  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

main {
  background: #3b4146;
}

.download-buttons {
  display: flex;
  margin: 20px auto 40px;
}

.download-buttons a {
  text-decoration: none;
}

.download-buttons button {
  width: 284px;
  height: 48px;
  border-radius: 36px;
  background-color: rgb(246, 94, 114);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.download-buttons .download-text {
  margin-left: 22px;
}

.guide-section {
  width: 100%;
  background-color: #fff;
  padding: 64px 0 56px;
}

.guide-contents {
  max-width: 1120px;
  margin: 0 auto;
}

.guide-contents h2 {
  font-size: 24px;
  font-weight: 700;
  color: rgb(59, 65, 70)
}

.guide-contents > div {
  display: flex;  
  margin-top: 32px;
}

.guide-contents .menu {
  flex: 1 1 256px;
  min-width: 168px;
  max-width: 256px;
}

.guide-contents .menu ul {
  background-color: rgb(44, 49, 52);
  border-radius: 10px;
}

.guide-contents .menu li {
  padding-top: 24px;
  padding-left: 24px;
  padding-bottom: 24px;
  font-size: 18px;
  font-weight: 500;
  border-bottom: solid 1px rgb(64, 71, 75);
}

.guide-contents .menu .menu-selected > a {
  color: #F65E72;
}

.guide-contents .menu .menu-selected > a:visited {
  color: #F65E72;
}

.guide-contents .menu .menu-selected > a:hover {
  color: #F65E72;
}


.guide-contents .articles ul {
  margin-left: 24px;
  list-style-type: disc;
}

.guide-contents .articles ol {
  margin-left: 24px;
  padding: 0;
}

.guide-contents .menu li:last-child {
  border-bottom: none;
}

.guide-contents .menu a {
  text-decoration: none;
  color: #fff;
}

.guide-contents .mobile-menu {
  display: none;
}

.guide-contents .articles {
  flex: 2 1;
  margin-left: 32px;
  color: rgb(59, 65, 70)
}

.guide-contents .articles .article-enable {
  display: none;
}

.guide-contents .articles .article-disable {
  display: none;
}

.guide-contents article h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 16px;
}

.guide-contents article h3 {
  width: 100%;
  font-size: 24px;
  font-weight: 500;
  padding-bottom: 8px;
  border-bottom: solid 1px rgb(222, 229, 236);
  margin: 32px 0 16px;
}

.guide-contents article h4 {
  margin: 0 16px 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.56;
  letter-spacing: -0.37px;
}

.guide-contents article p {
  margin: 0 16px 16px;
  font-size: 14px;
  line-height: 1.79;
  letter-spacing: -0.32px;
}

.guide-contents article .box {
  color: rgb(108, 119, 129);
  background-color: rgb(243, 247, 251);
  border: 1px solid rgb(222, 229, 236);
  padding: 16px 24px 16px 24px;
  border-radius: 8px;
}

.guide-contents article img {
  margin: 0 16px 16px;
}

.pre-footer {
  background: #3b4146;
}

.pre-footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 80px;
}

.pre-footer h4 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
}

.pre-footer-inner .products {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}

.pre-footer-inner .products img {
  border-radius: 11px;
}

footer {
  background: #000;
}

footer .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1120px;
  height: 80px;
  margin: 0 auto;
}

footer .footer-inner .company {
  display: flex;
  align-items: center;
}

footer .footer-inner .company span {
  margin-left: 16px;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #8996a1;
}
footer .footer-inner .terms {
  font-size: 12px;
  color: #8996a1;
}

footer .footer-inner .terms a {
  color: #8996a1;
  text-decoration: none;
}
