html, body {
  margin: 0;
  height: 100%;
  min-height: 100%;
  max-height: 100%;
  width: 100%;
  font-size: 15px;
}

@media screen and (min-width: 480px) {
  html, body {
    font-size: 16px;
  }
}

@media screen and (min-width: 801px) {
  html, body {
    font-size: 18px;
  }
}

.window {
  height: 100%;
  min-height: 100%;
  max-height: 100%;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-shadow: 0 0 1rem 0 gray;
          box-shadow: 0 0 1rem 0 gray;
}

@media screen and (orientation: portrait) {
  .window {
    width: 100%;
  }
}

@media screen and (max-width: 1280px) {
  .window {
    width: 100%;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.logo {
  background-color: #fff;
  margin: auto;
  height: 4rem;
}

.image {
  height: calc(100% - 6.6rem);
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}

@media screen and (max-width: 1280px) {
  .image {
    -webkit-box-shadow: inset 0 2rem 2rem -3rem black;
            box-shadow: inset 0 2rem 2rem -3rem black;
  }
}

@media screen and (orientation: portrait) {
  .image {
    background-position: left;
  }
}

.textbox {
  width: 38%;
  min-height: 25%;
  height: auto;
  position: absolute;
  right: 3rem;
  top: 20%;
}

@media screen and (orientation: portrait) {
  .textbox {
    width: 100%;
    left: 0;
    top: 33%;
  }
}

.textbox .logo-transparent {
  position: absolute;
  height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
  top: 5%;
  right: -10%;
}

@media screen and (orientation: portrait) {
  .textbox .logo-transparent {
    right: 2%;
  }
}

.textbox .error {
  margin: 2rem 1.5rem 0 1.5rem;
  text-align: right;
}

.textbox .text {
  margin: 1.5rem;
  line-height: 1.5rem;
  text-align: right;
}

footer {
  position: fixed;
  bottom: 0;
  width: inherit;
}

footer section {
  padding-left: 5%;
  padding-right: 5%;
}

footer .level1 {
  background-color: #ee7536;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-size: .8rem;
}

footer .level2 {
  font-size: .9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgba(51, 51, 51, 0.7);
  background-color: #ccc;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

@media screen and (orientation: portrait) {
  footer .level2 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

footer .level2 ul {
  margin: 0;
  padding-left: 0;
}

@media screen and (orientation: portrait) {
  footer .level2 ul {
    text-align: center;
    width: 100%;
    border-bottom-style: solid;
    border-color: #999999;
    border-width: 1px;
    padding-bottom: .5rem;
  }
}

footer .level2 ul li {
  display: inline-block;
  padding: 0 1rem 0 0;
}

footer .level2 ul li a {
  text-decoration: none;
  color: inherit;
}

footer .level2 ul li :hover, footer .level2 ul li :focus {
  color: black;
}

@media screen and (orientation: portrait) {
  footer .level2 .copyright {
    padding-top: .5rem;
  }
}
/*# sourceMappingURL=layout.css.map */