html, body {
  font-family: 'Replica-Bold', sans-serif;
  font-weight: 500;
  margin: 0;
  background: #CCCCCC;
  color: #808080;
  font-size: 16px;
  height: 100%;
}

body.landing { 
  background: #fff;
  color: #000;
  font-weight: 500;
  font-size: 20px;
  font-family: 'Replica-Bold', sans-serif;
}

#page-rack {
  background: #1E1E1E;
  color: #fff;
  font-size: 20px;
  height: auto;
  min-height: 100%;
  padding-top: 1em;
}

body.landing .wrap {
  margin: 0 auto;
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

body.landing .container {
  padding: 0 2em;
  box-sizing: border-box;
}

body.landing .container.navigation {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  padding: 0 2em;
  box-sizing: border-box;
}

.container.navigation ul {
  min-width: 100px;
  width: 50%;
  text-align: right;
  padding-top: 2.5em;
  letter-spacing: 1px;
  font-weight: 500;
  flex: 1;
}

.container.navigation ul li {
  display: inline-block;
}

.container.navigation ul li a {
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  padding: 1em;
}
.container.navigation ul li a:before {
  content: ">";
  position: relative;
  top: -1px;
  margin-right: .5em;
}

body:not(.landing) .wrap {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.wrap.vertical {
  max-width: 760px;
  flex-flow: column;
}

#page-title {
  font-weight: 300;
  line-height: 1.3em;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}
body.landing #page-title {
  flex: 0;
}

body:not(.landing) .logo {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  background: url(../images/logo.png) no-repeat;
  background-size: cover;
  overflow: hidden;
  text-indent: -9999px;
  pointer-events: none;
  cursor: none;
}

body.landing .logo {
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 1000;
  letter-spacing: 20px;
  line-height: 2em;
  display: inline-block;
  padding-top: 1em;
}

#page-title.sub_logo a {
  color: #8F8F8F;
  text-decoration: none;
  letter-spacing: 4px;
  font-weight: 600;
}

.tagline {
  font-size: 1.6em;
  font-weight: 600;
  color: #fff;
}

.tagline s {
  color: #8F8F8F;
}

.sub_logo span {
  color: #fff;
}

.landing .container {
  width: 100%;
}

body:not(.landing) .container {
  margin-bottom: 4em;
  width: 100%;
}

.btn-primary {
  display: inline-block;
  height: 48px;
  line-height: 48px;
  color: #000;

  background: linear-gradient(270deg, #f7f254, #f7f254);
  background-size: 300% 300%;

  -webkit-animation: AnimationName 5s ease infinite;
  -moz-animation: AnimationName 5s ease infinite;
  animation: AnimationName 5s ease infinite;

  text-transform: uppercase;
  font-size: .75em;
  font-weight: 600;
  min-width: 225px;
  text-align: center;
  text-decoration: none;
  border-radius: 2px;
  margin-bottom: 1em;
}

body.landing .btn-primary {
  margin: 0 auto;
  border-radius: 30px;
  font-size: 1em;
  height: 56px;
  line-height: 56px;
  letter-spacing: 0px;
  min-width: 270px;
  font-weight: 600;
}

.venn {
  display: block;
  width: 52px;
  height: 35px;
  background: url(../images/venn.svg) no-repeat;
  background-size: 100%;
  margin-bottom: 4em;
}

small {
  display: block;
  color: #8F8F8F;
  font-size: 60%;
  letter-spacing: 1px;
}

h2 {
  font-size: 1.2em;
  max-width: 380px;
  line-height: 1.75em;
}

.container:last-child {
  margin-bottom: 0;
  padding-bottom: 2em;
}

.align-right {
  text-align: right;
}

body:not(.landing) .hero {
  aspect-ratio: 1 / 1;
  width: 100%;
}
.landing .container.hero {
  width: 100%;
  flex: 0;
  margin-bottom: 2em;
}

.landing .container.hero p {
  width: 100%;
  max-width: 350px;
}
.landing .container.hero p:first-child {
  margin-top: 0;
}
.landing .container.hero p.center {
  max-width: 100%;
  text-align: center;
}

.wrap.vertical .hero {
  aspect-ratio: initial;
}

.container.footer {
  height: 100vh;
  min-height: 400px;
  background: url(../images/footer.jpg) center;
  background-size: cover;
  flex: 1;
  padding: 0;
}

.columns {
  display: flex;
  flex-flow: row;
}

.col {
  width: 50%;
}

ul {
  padding-left: 0;
  list-style: inside;
  line-height: 1.5em;
  margin-top: .5em;
}

@-webkit-keyframes AnimationName {
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}
@-moz-keyframes AnimationName {
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}
@keyframes AnimationName {
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}

@media screen and (max-width: 780px) {
  .sub_logo, .tagline, h2 { 
    font-size: 1.4em; 
    line-height: 1.4em;
  }
  .columns { display: block; }
  .col { width: 100%; }
  .hero img { width: 100%; }
  .wrap.vertical { 
    padding: 0 20px; 
    display: block;
  }
}

@media screen and (max-width: 600px) {
  body.landing {
    font-size: 18px;
  }
  body.landing .container.navigation {
    display: block;
  }
  body.landing .container.navigation ul {
    padding-top: 0;
    width: auto;
    font-size: .75em;
    text-align: left;
  }
  body.landing .container.navigation ul li {
    display: inline;
    margin-right: 2em;
  }
  body.landing .container.navigation ul li a {
    display: inline;
    padding: 0;
  }
  body.landing .container.navigation #page-title {
    font-size: 2em;
  }
}