@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:300,700|Open+Sans:300,400,700');
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 0 none;
  list-style: none outside none;
  margin: 0;
  outline: 0 none;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.flex-xs {
  display: -webkit-flex;
  display: flex;
}
.ta-c {
  text-align:center;
}
@media (min-width:768px) {
  .flex-sm {
    display: -webkit-flex;
    display: flex;
  } 
}
.flex-wrap {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.fd-c {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.ai-fe {
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ai-c {
  -webkit-align-items: center;
  align-items: center;
}
.ai-s {
  -webkit-align-items: stretch;
  align-items: stretch;
}
.as-fe {
  -webkit-align-self: flex-end;
  align-self: flex-end;
}
.as-c {
  -webkit-align-self: center;
  align-self: center;
}
.jc-c {
  -webkit-justify-content: center;
  justify-content: center;
}
.jc-sb {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.jc-sa {
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
.jc-fe {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  position:relative;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font:300 16px/24px 'Open Sans', sans-serif;
  background-color:black;
  color: white;
}
a {
  color:inherit;
  text-decoration:none;
}
img,
video {
  max-width:100%;
  vertical-align:middle;
}
h1,h2,h3,h4,h5,h6 {
  font-family: "Roboto Slab", sans-serif;
  text-align:center;
  margin-bottom:20px;
}
h2 {
  font-size:36px;
  line-height:36px;
}
h3 {
  font-size:24px;
  line-height:24px;
}
.blurb {
  font-style:italic;
  font-size:24px;
  line-height:24px;
}
section p {
  font-size:20px;
  line-height:28px;
}
ol {
  margin-left:30px;
}
ol li {
  list-style: decimal-leading-zero;
}
p,
li {
  padding-bottom:20px;
}
strong {
  font-weight:700;
}
.fixed {
  position:fixed;
  left:0;
  right:0;
  width:100%;
  height:100%;
}
.background {
  background: url('../images/map2.png?1') 50% 50% / contain no-repeat;
  position: fixed;
  top:0;
  right:0;
  bottom:0;
  left:0;
  -webkit-animation: wobbly 40s infinite;
}
section {
  height:100vh;
  padding-bottom:177px;
}
@-webkit-keyframes wobbly  {
  0% {transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);}
  30% {transform: rotateX(30deg) rotateY(0deg) rotateZ(10deg);}
  60% {transform: rotateX(0deg) rotateY(0deg) rotateZ(-10deg);}
  100% {transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);}
}
.more {
  font-size:16px;
  line-height:24px;
  cursor:pointer;
}
.more span:hover {
  /*border-bottom:1px solid white;*/
  color:black;
}
.more svg {
  display:inline-block;
  vertical-align:middle;
  fill:white;
  margin-right:10px;
}
.overlay {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color:rgba(0,0,0,.5);
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  filter: alpha(opacity=0);
  opacity: 0;
  visibility:hidden;
}
.modal {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color:rgba(0,0,0,.5);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-box-shadow: 0px 0px 50px rgba(0, 0, 0, .4);
  -moz-box-shadow: 0px 0px 50px rgba(0, 0, 0, .4);
  box-shadow: 0px 0px 50px rgba(0, 0, 0, .4);
  position:absolute;
  z-index:1;
  top:50%;
  left:50%;
  background-color:white;
  color:black;
  padding:50px;
  filter: alpha(opacity=0);
  opacity: 0;
  visibility:hidden;
  width:100%;
  max-width:768px;
  max-height:100vh;
  overflow-y:scroll;
}
.close-btn {
  position:absolute;
  top:0;
  right:0;
  width:50px;
  height:50px;
  background-color:black;
  cursor:pointer;
}
.showModal .overlay {
  filter: alpha(opacity=1);
  opacity: 1;
  visibility:visible;
}
article a {
  border-bottom:1px solid #e42a1d;
}
article a:hover {
  border-bottom:0;
}
.copyright {
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  z-index: 1;
  color:white;
  padding:40px 10px;
  font-size:14px;
  line-height:14px;
  text-transform:uppercase;
  letter-spacing: 3px;
  text-align:center;
}
@media (min-width:768px) {
  body {
    font-size:20px;
    line-height:28px;
  }
  h2 {
    font-size:60px;
    line-height:60px;
  }
  .blurb,
  h3 {
    font-size:48px;
    line-height:48px;
  }
  section p {
    font-size:36px;
    line-height:48px;
  }  
  .more {
    font-size:24px;
  }
  section {
    padding-bottom:152px;
  }
  .copyright {
    padding-left:30px;
    padding-right:30px;
  }
}
@media (min-width:1800px) {
  .background {
    background-image: url('../images/assets-map-3x.png');
  }
}