html {
  scroll-behavior: smooth;
}
html,
body {
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: 1.5rem;
  font-family: 'Open Sans', sans-serif;
}
* {
  box-sizing: border-box;
}
h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2.5rem;
  color: var(--h2-color);
}
h3 {
  font-size: 2rem;
}
h4 {
  font-size: 1.5rem;
}
p {
  margin-top: 0.5rem;
  margin-bottom: 0;
  padding: 0;
}
ul {
  padding: 0;
  padding-left: 45px;
  margin: 0;
  list-style: none;
}
ul > li {
  padding: 0;
  margin: 0;
}
ul > li::before {
  content: "\2022";
  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: var(--bullet-style-color);
  /* Change the color */
  display: inline-block;
  /* Needed to add space between the bullet and the text */
  width: 1em;
  /* Also needed for space (tweak if needed) */
  margin-left: -1em;
  /* Also needed for space (tweak if needed) */
  font-size: 2rem;
  vertical-align: top;
}
ul > li > ul > li {
  padding-left: 10px;
}
ul > li > ul > li::before {
  content: "\2606";
  width: 2em;
  /* Also needed for space (tweak if needed) */
  margin-left: -2em;
  font-size: 1rem;
}
a {
  color: var(--anker-link-color);
  text-decoration: none;
}
a:hover {
  color: var(--anker-link-color-hover);
}
:root {
  --h2-color: #E20555;
  --h3-color: #e636ab;
  --bullet-style-color: var(--h2-color);
  --anker-link-color-hover: gold;
  --main-header-bg-color: #424244;
  --font-color-main: #D1D1D1;
  --anker-link-color: #DDDDDD;
  --mountin-wave-1: #fff;
  --mountin-wave-2: #b4bfc1;
  --mountin-wave-3: #536364;
  --star-fill-color: #6d7576;
  --star-fill-twinkle-color: #e9fa00;
  --footer-anker-link-color: var(--h3-color);
  --footer-star-fill-color: #505050;
  --mobile-main-container-padding: 30px;
  --mobile-popout-menu-bg-color: #2b2f36;
  --mobile-popout-menu-header-bg-color: #222830;
}
@keyframes star-1 {
  0% {
    fill: var(--star-fill-twinkle-color);
  }
  10% {
    fill: var(--star-fill-color);
  }
  11% {
    fill: var(--star-fill-color);
  }
  100% {
    fill: var(--star-fill-color);
  }
}
header.body-header {
  background-color: var(--main-header-bg-color);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  header.body-header {
    background-size: 100% auto;
  }
}
header.body-header > svg.mountain-svg {
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100px;
}
@media screen and (max-width: 960px) {
  header.body-header > svg.mountain-svg {
    background-size: 100% auto;
    width: auto;
    height: auto;
  }
}
header.body-header > svg.mountain-svg .mountin-wave-1 {
  fill: var(--mountin-wave-1);
}
header.body-header > svg.mountain-svg .mountin-wave-2 {
  fill: var(--mountin-wave-2);
}
header.body-header > svg.mountain-svg .mountin-wave-3 {
  fill: var(--mountin-wave-3);
}
header.body-header > svg.stars-svg {
  position: absolute;
  width: 1000px;
  height: 143px;
  left: auto;
  right: auto;
  top: 20px;
  left: 50%;
  transform: translate(-50%, 0);
}
header.body-header > svg.stars-svg .star-object {
  fill: var(--star-fill-color);
  animation-name: star-1;
  animation-duration: 20.3s;
  animation-iteration-count: infinite;
}
header.body-header > svg.stars-svg .star-object:nth-child(1) {
  animation-delay: 5s;
}
@media screen and (max-width: 690px) {
  header.body-header > svg.stars-svg .star-object:nth-child(1) {
    display: none;
  }
}
header.body-header > svg.stars-svg .star-object:nth-child(2) {
  animation-delay: 9s;
}
header.body-header > svg.stars-svg .star-object:nth-child(3) {
  animation-delay: 14s;
}
header.body-header > svg.stars-svg .star-object:nth-child(4) {
  animation-delay: 19s;
}
header.body-header > svg.stars-svg .star-object:nth-child(5) {
  animation-delay: 25s;
}
header.body-header > svg.stars-svg .star-object:nth-child(6) {
  animation-delay: 31s;
}
header.body-header > svg.stars-svg .star-object:nth-child(7) {
  animation-delay: 38s;
}
header.body-header > svg.moon-svg {
  position: absolute;
  width: 34px;
  height: 36px;
  top: 20px;
  left: 50%;
  transform: translate(-50%, 0);
}
header.body-header > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
  padding-bottom: 150px;
}
@media screen and (max-width: 960px) {
  header.body-header > div {
    padding-bottom: 15vw;
  }
}
header.body-header > div > div {
  /*
			margin-top: 75px;
			max-width: 960px;
			margin-left: auto;
			margin-right: auto;
	*/
  z-index: 1;
}
header.body-header > div > div > h1 {
  color: white;
  font-size: 2.5rem;
  transition: padding-left 0.5s;
}
@media screen and (max-width: 1000px) {
  header.body-header > div > div > h1 {
    padding-left: var(--mobile-main-container-padding);
    font-size: 2rem;
    font-size: 4.5vw;
  }
}
header.body-header > div > div > div {
  margin-top: 75px;
  max-width: 700px;
  font-size: 1.1rem;
}
@media screen and (max-width: 960px) {
  header.body-header > div > a.show {
    display: block;
  }
}
header.body-header > div > a {
  display: none;
  width: 30px;
  justify-self: end;
  align-self: center;
  margin-right: var(--mobile-main-container-padding);
  margin-top: -100px;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  header.body-header > div > a {
    display: block;
  }
}
header.body-header > div > a > svg {
  width: 100%;
}
@media screen and (max-width: 960px) {
  header.body-header > div > nav.show {
    display: flex;
    width: 200px;
  }
}
header.body-header > div > nav {
  display: flex;
  justify-content: flex-end;
  padding-top: 15px;
  padding-bottom: 10px;
  padding-right: var(--mobile-main-container-padding);
  z-index: 1;
}
@media screen and (max-width: 960px) {
  header.body-header > div > nav {
    flex-direction: column;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    transition: width 0.5s;
    padding-top: 0;
    padding-right: 0;
    background-color: var(--mobile-popout-menu-bg-color);
  }
}
header.body-header > div > nav > div {
  display: none;
}
@media screen and (max-width: 960px) {
  header.body-header > div > nav > div {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 20px;
    padding-left: 30px;
    background-color: var(--mobile-popout-menu-header-bg-color);
  }
}
header.body-header > div > nav > div > div {
  color: #e2e5ec;
  font-size: 1.2rem;
  font-weight: 100;
}
header.body-header > div > nav > div > div button {
  height: 20px;
  display: inline;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
}
header.body-header > div > nav > div > div button > svg {
  height: 20px;
}
header.body-header > div > nav > div > button {
  height: 20px;
  display: inline;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
}
header.body-header > div > nav > div > button > svg {
  height: 20px;
}
header.body-header > div > nav > ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 40px;
  margin-top: 20px;
}
@media screen and (max-width: 960px) {
  header.body-header > div > nav > ul {
    flex-direction: column;
    gap: 20px;
    padding-left: var(--mobile-main-container-padding);
    padding-right: var(--mobile-main-container-padding);
  }
}
header.body-header > div > nav > ul > li {
  list-style-type: none;
  font-size: 1.5rem;
  display: flex;
  column-gap: 10px;
}
@media screen and (max-width: 960px) {
  header.body-header > div > nav > ul > li {
    align-items: center;
  }
}
header.body-header > div > nav > ul > li::before {
  content: none;
}
header.body-header > div > nav > ul > li > svg {
  height: 15px;
  display: none;
}
@media screen and (max-width: 960px) {
  header.body-header > div > nav > ul > li > svg {
    display: block;
  }
}
header.body-header > div > nav > ul > li > a {
  display: flex;
  column-gap: 20px;
}
@media screen and (max-width: 960px) {
  header.body-header > div > nav > ul > li > a {
    color: #d9d9d9;
    font-weight: 100;
    align-items: center;
  }
  header.body-header > div > nav > ul > li > a:hover {
    color: var(--anker-link-color-hover);
  }
}
header.body-header > div > nav > ul > li > a > svg {
  width: 25px;
  display: none;
}
@media screen and (max-width: 960px) {
  header.body-header > div > nav > ul > li > a > svg {
    display: block;
  }
}
footer.body-footer {
  background-color: var(--main-header-bg-color);
  margin-top: 80px;
  padding-top: 60px;
  padding-bottom: 20px;
  position: relative;
  overflow: hidden;
}
footer.body-footer > svg.stars-svg {
  position: absolute;
  width: 1500px;
  height: 214px;
  left: auto;
  right: auto;
  top: 60px;
  left: 50%;
  transform: translate(-50%, 0);
}
footer.body-footer > svg.stars-svg .star-object {
  fill: var(--footer-star-fill-color);
}
footer.body-footer > div ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
  column-gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
  padding-left: 0;
}
footer.body-footer > div ul li {
  z-index: 1;
  font-size: 1.5rem;
}
footer.body-footer > div ul li::before {
  content: none;
}
footer.body-footer > footer {
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  max-width: 960px;
  text-align: center;
  color: var(--font-color-main);
}
footer.body-footer > footer > header a {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  margin-left: auto;
  margin-right: auto;
  width: 130px;
}
footer.body-footer > footer > header a > span {
  z-index: 1;
}
footer.body-footer > footer > header a > span > svg {
  width: 30px;
}
footer.body-footer > footer > div {
  margin-top: 10px;
}
footer.body-footer > footer > div a,
footer.body-footer > footer > div a:visited,
footer.body-footer > footer > div a:active {
  color: var(--footer-anker-link-color);
  z-index: 1;
}
