@font-face {
font-family: "body";
src: url("../fonts/body.otf") format("opentype")
}

@font-face {
font-family: "heading";
src: url("../fonts/heading.otf") format("opentype")
}

a {
  text-decoration: underline;
  color: #fff;
}

h1{
  font-size: 32px;
}

.hidden{
  display: none;
}

.body {
  display: block;
  overflow: scroll;
  max-height: 100vh;
  background-color: #ff4612;
  font-family: 'body';
  color: #fff;
}

.leftcontent {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 0px;
  padding-left: 0px;
}

.columns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  max-height: 100vh;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

.name {
  margin-bottom: 10px;
  color: #fff;
  font-size: 2.8em;
  line-height: 120%;
  letter-spacing: 1px;
  font-family: 'heading';
}

.bold-text {
  font-weight: 600;
}

.tagline {
  margin-bottom: 40px;
  color: #ddd;
  font-size: 58px;
  line-height: 100%;
}

.bio {
  color: #fff;
  font-size: 21px;
  line-height: 140%;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
  text-align: center;
}

.bio span
{
  display: block;
  flex-shrink: 3;
  width: 33%;
  margin-top: 30px;
}

.bio span i
{
  font-size: 45px;
  padding-bottom: 10px;
}

.text-block-2 {
  margin-bottom: 20px;
  color: #485462;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.list {
  font-family: Lora, sans-serif;
  color: #848d96;
  font-size: 16px;
  line-height: 160%;
}

.credit {
  font-size: 13px;
}

.rightcontent {
  overflow: auto;
  padding: 120px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.content {
  overflow: auto;
}

.orb{
  margin: 90px 0 20px 0;
}

.links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 100%;
  margin-bottom: 40px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.bio-links,
.credit-links {
  color: #fff;
  text-decoration: underline;
}

.image {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  display: block;
  min-height: 100vh;
  min-width: 100%;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  background-image: url('../images/split.jpg');
  background-position: 50% 50%;
  background-size: cover;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 991px) {
  .leftcontent {
    display: block;
    -o-object-position: 50% 0%;
    object-position: 50% 0%;
  }

  .columns {
    display: block;
  }

  .rightcontent {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .links {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .column {
    margin-bottom: 20px;
  }

  .column-2 {
    margin-bottom: 20px;
  }

  .image {
    position: static;
    height: 420px;
    max-height: 50vh;
    min-height: auto;
    background-position: 50% 0%;
  }
}

@media screen and (max-width: 767px) {
  .name {
    margin-bottom: 20px;
  }

  .rightcontent {
    padding: 60px;
  }
}

@media screen and (max-width: 479px) {
  .bold-text {
    font-size: 42px;
    line-height: 42px;
  }

  .bio {
    font-size: 16px;
  }

  .credit {
    font-size: 12px;
  }

  .rightcontent {
    padding: 30px;
  }

  .image {
    height: 240px;
    max-height: 30vh;
  }
}

a.button{
  display: block;
  background-color: #fff;
  color: #333;
  text-align: center;
  border-radius: 10px;
  font-size: 1.5em;
  padding: 20px;
  margin: 20px 0 10px 0;
  text-decoration: none;
}

a#make-new{
  display: block;
  background-color: #f66;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  font-size: 1.2em;
  padding: 20px;
  margin: 20px 0;
  text-decoration: none;
}

#error{
  background-color: #000;
  color: #C00;
  text-align: center;
  border-radius: 10px;
  font-size: 1.2em;
  padding: 20px;
  margin: 20px 0;
  text-decoration: none;
}

#email,
#name{
  border: none;
  border-bottom: solid 1px #900;
  padding: 10px;
  font-size: 1.2em;
  display: block;
  width: 100%;
  background: none;
}

#newsletter{
  margin: 20px 10px 0 0;
}
label{
  display: inline;
}

ul.social{
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 30px;
}
ul.social li{
  display: inline-block;
  width: 50px;
  height: 80px;
  margin-right: 50px;
}


ul.social li a{
  display: inline-block;
  width: 70px;
  height: 70px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
}

ul.social li a.orb-link{
  background-image: url('../images/ORB logo white DEF.png');
}

ul.social li a.niantic-link{
  background-image: url('../images/NianticLogo-WhiteSmall.png');
  background-size: auto 100%;
}

ul.social li a.eight-link{
  background-image: url('../images/8th Wall Logo_White.png');
  width: 90px;
}

::placeholder {
  color: #900;
  font-style: italic;
}
.disclaimer{
  font-size: 11px;
}
a#share-url{
  margin: 30px 0;
  text-align: center;
  font-size: 24px;
  line-height: 30px;
  font-weight: bold;
  box-sizing: border-box;
  display: block;
}
#mc_embed_signup {
  background: none !important;
}

#mc_embed_signup .asterisk {
color: #fff !important;
}

#mc_embed_signup {
max-width: 600px !important;
width: 100% !important;
}

#mc_embed_signup .button {
background-color: #fff !important;
color: #333 !important;
}

#mc_embed_signup .mc-field-group input {
color: #333;
}
