html {
  height: 100%;
}
body {
  height: 100%;
  background: #009793;
  font: 16px 'AkagiProBook', Arial, sans-serif;
}
body.notmobile {
  min-width: 300px;
}
.SplashPage-logo {
  position: absolute;
  top: 30px;
  left: 50%;
  margin-left: -50px;
  color: white;
}
.SplashPage-activeLanguage {
  display: none;
}
.SplashPage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.SplashPage-content {
  width: 100%;
}
.SplashPage-languages {
  padding: 0 10px;
  transition: 0.5s transform ease-out, 0.5s opacity ease-out, 0.01s 0.9s height;
  width: 300px;
  margin: 0 auto;
  height: 84px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -38px, 0);
}
@media screen and (min-width: 64em) {
  .SplashPage-languages {
    width: 500px;
    height: 95px;
  }
}
.SplashPage-activeLanguage:checked ~ .SplashPage-content .SplashPage-languages {
  opacity: 0;
  transform: translate3d(-50%, -100px, 0);
  height: 0;
}
.SplashPage-language {
  text-align: center;
  width: 33%;
  display: block;
  float: left;
  vertical-align: top;
  background: white;
  color: black;
  padding: 10px;
  border-right: 2px solid #009793;
  cursor: pointer;
  font-size: 11px;
  transition: background 0.3s ease-out;
  box-sizing: border-box;
  height: 84px;
}
.SplashPage-language:hover {
  background-color: rgba(255, 255, 255, 0.95);
}
.SplashPage-language:before {
  content: attr(data-shortcode);
  display: block;
  font-size: 20px;
  text-transform: uppercase;
  height: 30px;
  line-height: 30px;
  color: black;
  cursor: hand;
  font-family: 'Ample-Bold', 'Catamaran', sans-serif;
  font-weight: normal;
}
.SplashPage-language:first-child {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.SplashPage-language:last-child {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-right: none;
}
@media screen and (min-width: 64em) {
  .SplashPage-language {
    padding-left: 27px;
    padding-right: 27px;
    font-size: 14px;
    height: 95px;
  }
}
.SplashPage-button > .SplashPage-language {
  border-radius: 0;
  border-right: 2px solid #009793;
}
.SplashPage-button:first-of-type > .SplashPage-language {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.SplashPage-button:last-of-type > .SplashPage-language {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-right: none;
}
.SplashPage-link {
  text-decoration: none;
  border-radius: 15px;
  overflow: hidden;
  display: block;
  transition: transform 0.25s ease-in;
  will-change: transform;
}
.SplashPage-link:hover {
  text-decoration: none;
}
@media screen and (min-width: 64em) {
  .SplashPage-link:hover {
    transform: scale(1.03);
  }
}
.SplashPage-photo {
  display: none;
}
@media screen and (min-width: 64em) {
  .SplashPage-photo {
    display: block;
  }
  .SplashPage-photo img {
    width: 100%;
    height: auto;
    display: block;
  }
}
@media screen and (min-width: 64em) {
  .SplashPage-button {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }
  .SplashPage-button:hover {
    opacity: 1 !important;
  }
}
.SplashPage-segments {
  opacity: 0;
  transition: opacity .35s 0.75s;
  width: 300px;
  margin: 0 auto;
}
@media screen and (min-width: 64em) {
  .SplashPage-segments {
    width: 666px;
  }
}
.SplashPage-activeLanguage:checked ~ .SplashPage-content .SplashPage-segments {
  opacity: 1;
}
.SplashPage-segment {
  display: none;
}
.SplashPage-activeLanguage:nth-child(1):checked ~ .SplashPage-content .SplashPage-segment:nth-child(1) {
  display: block;
}
.SplashPage-activeLanguage:nth-child(2):checked ~ .SplashPage-content .SplashPage-segment:nth-child(2) {
  display: block;
}
.SplashPage-activeLanguage:nth-child(3):checked ~ .SplashPage-content .SplashPage-segment:nth-child(3) {
  display: block;
}

