@charset "UTF-8";
main section#slogan-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 600px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("/images/slogan-background.jpg");
}
@media screen and (max-width: 1023px) {
  main section#slogan-image {
    height: auto;
    padding-bottom: 80%;
  }
}
main section#slogan-image .background-mask {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
main section#slogan-image #slogan {
  z-index: 10;
  margin-top: -210px;
  padding: 0 32px;
  text-align: center;
}
main section#slogan-image #slogan.chinese {
  font-family: "STXingkai", "华文行楷", "Xingkai SC", serif;
  font-size: 72px;
  font-weight: bold;
  color: white;
}
@media screen and (max-width: 1023px) {
  main section#slogan-image #slogan.chinese {
    font-size: 40px;
  }
}
main section#slogan-image #slogan.russian {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: normal;
  color: goldenrod;
  text-shadow: white 0 0 4px;
}
@media screen and (max-width: 1023px) {
  main section#slogan-image #slogan.russian {
    font-size: 28px;
  }
}
@media screen and (max-width: 1023px) {
  main section#slogan-image #slogan {
    position: absolute;
    top: 25%;
    margin-top: 0;
    padding: 0 16px;
  }
}
main nav {
  z-index: 10;
  position: relative;
  margin: -30px 20px 0 20px;
  padding: 24px 0;
  background-color: rgb(178, 48, 43);
}
@media screen and (max-width: 1023px) {
  main nav {
    margin: 0;
  }
}
main nav ul {
  display: flex;
}
@media screen and (max-width: 1023px) {
  main nav ul {
    flex-direction: column;
    align-items: center;
  }
}
main nav ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  color: white;
  text-align: center;
  font-size: 24px;
}
@media screen and (max-width: 1023px) {
  main nav ul li {
    font-size: 18px;
  }
  main nav ul li:not(:first-child) {
    margin-top: 10px;
  }
}
main nav ul li .icon {
  height: 48px;
}
@media screen and (max-width: 1023px) {
  main nav ul li .icon {
    height: 32px;
  }
}
main nav ul li a {
  margin-left: 20px;
}
main nav ul li a:hover {
  font-weight: bold;
}
@media screen and (max-width: 1023px) {
  main nav ul li a {
    margin-left: 10px;
  }
}
