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

.container {
  margin: 0 auto;
  max-width: 1200px;
}

/*Header Styling*/
header a {
  text-decoration: none;
}
header .logo p {
  font-family: "space grotesk", sans-serif;
  color: rgb(254, 57, 60);
  font-size: 1.7em;
  font-weight: 700;
  line-height: 25px;
}
header .logo p span {
  font-weight: 400;
  font-size: 0.6em;
}
header ul {
  list-style: none;
  display: flex;
  font-size: 0.9em;
  font-family: "Google Sans Flex", sans-serif;
}
header ul .dropdown {
  position: relative;
}
header ul .dropdown .dropbtn {
  font-size: 1.5em;
  font-weight: 300;
}
header ul .dropdown .dropdown-content {
  display: none;
  position: absolute;
  background-color: #F9F9F9;
  min-width: 160px;
  z-index: 1;
  right: -20px;
}
header ul .dropdown .dropdown-content a {
  color: #000;
  padding: 12px 16px;
  font-size: 1.1em;
  text-align: start;
  text-decoration: none;
  display: block;
}
header ul .dropdown .dropdown-content a:hover {
  background-color: #DDD;
}
header ul .dropdown:hover .dropdown-content {
  display: block;
}
header ul li a {
  color: #000;
  font-weight: 300;
  font-size: 1.5em;
  padding: 0 15px;
}
header ul li::after {
  content: "";
  width: 0%;
  height: 2.5px;
  border-radius: 20px;
  background-color: #FE393C;
  display: block;
  margin: auto;
  transition: 0.5s ease;
  margin-top: 5px;
}
header ul li:hover::after {
  width: 70%;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 20px;
}
header .language {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .language .lang-item {
  margin: auto 5px;
}
header .language a {
  color: #000;
  transition: 0.3s ease;
}
header .language a:hover {
  color: #FE393C;
}
header .language #eng {
  font-family: "Google Sans Flex", sans-serif;
  font-weight: 300;
}
header .language #sim-chinese {
  font-weight: 600;
}

/* Footer */
footer {
  font-family: "Space Grotesk", sans-serif;
  text-align: center;
  background-color: #FE393C;
  color: #FFF;
  padding: 20px 0;
  margin-top: 30px;
}/*# sourceMappingURL=style.css.map */