html, body {
  margin: 0;
  padding: 0;
  font-family: "Oswald", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 700;
}

.splash-wrapper {
  width: 100%;
  box-sizing: border-box;
  height: 100vh;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  background-size: cover;
  color: white;
  justify-content: space-between;
  padding: 80px;
}
@media only screen and (max-width: 480px) {
  .splash-wrapper {
    height: auto;
    padding: 40px;
    min-height: 100vh;
  }
}
.splash-wrapper .splash-inner {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 480px) {
  .splash-wrapper .splash-inner:nth-child(2) {
    margin: 80px 0;
  }
}
.splash-wrapper .slogan {
  font-size: 28px;
  text-transform: lowercase;
  margin-top: 10px;
}
.splash-wrapper .logo-wrapper .logo {
  height: 100px;
  width: auto;
  display: block;
}
.splash-wrapper .title {
  font-size: 80px;
  text-transform: uppercase;
  max-width: 1200px;
  text-align: center;
  line-height: 80px;
}
@media only screen and (max-width: 480px) {
  .splash-wrapper .title {
    font-size: 48px;
    line-height: 48px;
  }
}
.splash-wrapper .join-button-wrapper {
  margin-top: 40px;
}
.splash-wrapper .join-button-wrapper .join-button {
  color: white;
  text-decoration: none;
  font-weight: 400;
  font-family: "Roboto Condensed", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}
.splash-wrapper .join-button-wrapper .join-button:focus, .splash-wrapper .join-button-wrapper .join-button:active {
  color: white;
  text-decoration: none;
}
.splash-wrapper .join-button-wrapper .join-button::after {
  height: 2px;
  background-color: white;
  width: 100%;
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 50ms ease-in-out;
}
.splash-wrapper .join-button-wrapper .join-button:hover::after {
  width: 50%;
}
.splash-wrapper .divisions-wrapper {
  display: flex;
  align-items: center;
}
.splash-wrapper .divisions-wrapper .division {
  font-size: 28px;
  color: white;
  text-transform: lowercase;
}
.splash-wrapper .divisions-wrapper .division.talent.active {
  color: #627abc;
}
.splash-wrapper .divisions-wrapper .division.facilities.active {
  color: #84c441;
}
@media only screen and (max-width: 480px) {
  .splash-wrapper .divisions-wrapper .division {
    font-size: 18px;
  }
}
.splash-wrapper .divisions-wrapper .divider {
  display: inline-block;
  height: 36px;
  width: 2px;
  background-color: white;
  margin: 0 16px;
  margin-top: 2px;
}
.splash-wrapper .social-icons {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.splash-wrapper .social-icons .social-icon {
  background-color: white;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 21px;
  text-decoration: none !important;
}
.splash-wrapper .social-icons .social-icon:not(:last-child) {
  margin-right: 8px;
}

body.facilities .splash-wrapper {
  background: url("media/fdbg.jpg");
}
body.facilities .logo-wrapper .logo.facilities {
  display: block;
}
body.facilities .logo-wrapper .logo.talent {
  display: none;
}
body.facilities .divisions-wrapper .division.talent {
  color: white;
}
body.facilities .divisions-wrapper .division.facilities {
  color: #84c441;
}
body.facilities .social-icons .social-icon {
  color: #84c441 !important;
}

body.talent .splash-wrapper {
  background: url("media/tdbg.jpg");
}
body.talent .logo-wrapper .logo.facilities {
  display: none;
}
body.talent .logo-wrapper .logo.talent {
  display: block;
}
body.talent .divisions-wrapper .division.talent {
  color: #627abc;
}
body.talent .divisions-wrapper .division.facilities {
  color: white;
}
body.talent .social-icons .social-icon {
  color: #627abc !important;
}/*# sourceMappingURL=style.css.map */