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

iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 0px;
}

body {
  background-color: #172532;
}

header {
  position: fixed;
  z-index: 99;
  max-width: 200px;
  width: 20%;
  padding: 0 20px;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: Arial, Helvetica, sans-serif;
}

header nav > div:nth-child(1) > div:nth-child(2) {
  text-align: center;
  font-size: 23px;
  position: relative;
  padding: 25px 0 0;
  margin: 5px;
  color: white;
  cursor: default;
}

header nav > div:nth-child(1) > div:nth-child(2) img {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

header nav > div:nth-child(1) > div:nth-child(2)::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: white;
  border: 1px solid white;
  width: 90%;
}

header nav > div:nth-child(1) > div:nth-child(3) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px 0 0;
}

header nav > div:nth-child(1) > div:nth-child(3) .en {
  font-size: 16px;
  letter-spacing: 3px;
  padding: 5px;
  height: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header nav > div:nth-child(1) > div:nth-child(3) a {
  font-size: 18px;
  text-decoration: none;
  color: white;
  text-align: center;
  letter-spacing: 5px;
  margin: 5px;
  padding: 10px;
  background-color: #304e69;
  -webkit-transition: .5s;
  transition: .5s;
}

header nav > div:nth-child(1) > div:nth-child(3) a:hover {
  background-color: #4c759c;
}

header nav > div:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

header nav > div:nth-child(2) a {
  color: #436a8f;
  font-size: 30px;
  margin: 10px;
  -webkit-transition: .5s;
  transition: .5s;
}

header nav > div:nth-child(2) a:hover {
  color: #5586b4;
}

.close {
  display: none;
}

.nav {
  display: none;
}

img {
  width: 100%;
}

@media screen and (max-width: 640px) {
  header {
    width: 100%;
    height: 100%;
    background-color: #172532;
    -webkit-transform: translateX(-200px);
            transform: translateX(-200px);
  }
  header #title {
    padding: 40px 0 0;
  }
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 98;
    display: block;
  }
  .nav span {
    position: absolute;
    color: white;
    margin: 10px;
    width: 25px;
  }
  .close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 100;
    display: block;
    color: white;
    padding: 20px 25px 0 0;
  }
}
/*# sourceMappingURL=main.css.map */