@font-face {
  font-family: 'wonderunitsans';
  src: url('fonts/wonderunitsans/WonderUnitSans-Thin.woff') format('woff');
  /* Pretty Modern Browsers */
  font-weight: 200; }

@font-face {
  font-family: 'wonderunitsans';
  src: url('fonts/wonderunitsans/WonderUnitSans-Light.woff') format('woff');
  /* Pretty Modern Browsers */
  font-weight: 300; }

@font-face {
  font-family: 'wonderunitsans';
  src: url('fonts/wonderunitsans/WonderUnitSans-Regular.woff') format('woff');
  /* Pretty Modern Browsers */
  font-weight: 400; }

@font-face {
  font-family: 'wonderunitsans';
  src: url('fonts/wonderunitsans/WonderUnitSans-Bold.woff') format('woff');
  /* Pretty Modern Browsers */
  font-weight: 700; }

@font-face {
  font-family: 'wonderunitsans';
  src: url('fonts/wonderunitsans/WonderUnitSans-Black.woff') format('woff');
  /* Pretty Modern Browsers */
  font-weight: 900; }

body, h1, h2, h3, h4 { 
  font-family: 'wonderunitsans';
  font-weight: 300;
}

kbd {
  font-family: 'wonderunitsans';
  font-weight: 300;
  padding: 20px;
}

a, a:visited, a:hover, a:active {
  color: inherit;
}

.nav-logo {
  margin-top: 6px;
  width: 150px;

}

.build-out {
  color: rgba(255,255,255,0.1);
}

.small-padding-above {
  padding-top: 20px;
}

small {
  opacity: 0.5;
}

#software-header {
  width: 980px;
}

#software-header h1 {
  font-size: 80px;
  margin-bottom: 10px;
  line-height: 80px;
}

#software-header.post h1 {
  line-height: 100px;
}

#software-header h2 {
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 30px;
}

.button {
  font-size: 20px;
  text-align: center;
  font-weight: 500;
  border-radius: 6px;
  padding: 25px 25px;
  background-color: rgba(255,255,255,0.2);
  transition: background-color 0.2s;
  cursor: pointer;
  animation: slidein2 1s ease-in-out infinite alternate;
}

.button.blue {
  background-color: rgba(0,0,255,0.2);
  animation: phase-blue 1s ease-in-out infinite alternate;
}

.button.grey {
  background-color: rgba(0,0,0,0.05) !important;
  animation: none;
  font-weight: 300;
}

.button.grey:hover {
  background-color: rgba(0,0,0,0.1) !important;
}



@keyframes slidein2 {
  0% {
    background-color: rgba(255,255,255,0.3);
  }
  100% {
    background-color: rgba(255,255,255,0.1);
  }
}

@keyframes phase-blue {
  0% {
    background-color: rgba(0,0,255,0.3);
  }
  100% {
    background-color: rgba(0,0,255,0.1);
  }
}

.button:hover {
  animation: none;
  background-color: rgba(255,255,255,0.4);
}


.image {
  opacity: 1;
}

.image::after {
    content:"";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    background: #6b8fed;
    opacity: 0.9;
    mix-blend-mode: normal;
    border-radius: inherit;
}


.button.download {
}

.button.download:hover {
  background: rgba(255,255,255,0.4);
}


input[type=email] {
  background: rgba(0,0,0,0.0);
  border-radius: 5px;
  border: 3px solid rgba(0,0,0,0.1);
  outline: none;
  box-shadow: none;
  font-size: 25px;
  padding: 20px 20px;
  color: rgba(0,0,0,0.6);
  transform: all 0.1s;
  height: auto;
}

input.error {
  background: rgba(255,0,0,0.8);
}


input[type=email]:focus {
  background: rgba(0,0,0,0.0);
  border: 3px solid rgba(0,0,0,0.2);
  outline: none;
  box-shadow: none;
}

.left-menu {
  float: left;
  padding-right: 10px;
  margin-left: -26px;
  line-height: 1.3;
  opacity: 0;
  transition: all 0.1s;
}

.left-menu svg {
    vertical-align: middle;
    pointer-events: none;
    opacity: 0.2;
}

.left-menu svg:hover {
  opacity: 0.5;
}

#article .paragraph:not(.reading):hover > .left-menu, .paragraph:not(.reading) .left-menu:hover {
  opacity: 1;
}


#article.reading section {
  padding: 100px 0;
  color: #ccc;
}

#article .word {
  transition: all 0.5s;
}

#article .word.reading {
  transition: all 0.5s;
  color: #45525b;
}

#article .word.active {
  transition: all 0s;
  color: #2c404e;
}

#article.reading .paragraph {
  transition: color 0.3s, transform 5s;
  display: block;
}

#article .paragraph {
  transition: color 0.3s, transform 0.3s;
  display: block;
}

#article.reading .paragraph.reading {
  transition: color 0s, transform 0.3s;
  color: #999;
  transform: scale(1.05);
/*  border-left: 5px solid #eee;
  padding-left: 50px;
  margin-left: -55px;
  display: block;
  box-sizing: border-box;
*/}

#article .sentence.reading {
  /*color: #3374a0;
  *//*text-decoration: underline;*/
}


#article section {
  padding: 100px 0;
  color: #45525b;
}

#article p {
  font-size: 22px !important;
  margin-bottom: 50px;

}

#article strong {
  font-weight: 400;
}

#article h2 {
  margin-bottom: 50px;
}

#article h3 {
  font-size: 35px;
  margin-bottom: 50px;
}

#article p + ul, #article p + ol {
  margin-top: -20px;
  font-size: 22px;
  margin-bottom: 50px;
  margin-left: 25px;
}




#article li ol, #article li ul {
  margin-bottom: 0px;
}


#article ul, #article ol {
  font-size: 22px;
  margin-bottom: 50px;
  margin-left: 20px;
}

#article li {
  margin-bottom: 10px;
  border-left: 6px solid rgba(255,255,255,0);
}


#article .toc, #article .toc ol {
  list-style-type: none;
  margin-top: 0px;
  font-size: 22px;
  margin-bottom: 10px;
  margin-left: 0px;
}





#article .toc li {
  margin-top: 0px;
  font-size: 22px;
  margin-bottom: 10px;
  margin-left: 0px;
  border-left: 0;
}

#article .toc a {
  color: black;
}


#article .toc li.toc-level-1 #word-0{
  font-size: 26px !important;
  margin-bottom: 20px;
  display: block;
}

#article .toc li.toc-level-1 {
  font-size: 26px !important;
  margin-bottom: 40px;
  display: block;
}





#article a{
  color: #4675d9;
}

#article img.right {
  width: 45%;
  box-shadow: 0px 5px 10px rgba(0,0,0,0.4);
  border-radius: 4px;
  float: right;
  margin-left: 30px;
}



h1 {
  font-size: 65px;
}

h3 {
  font-size: 25px;
}

body section .row {
  max-width: 980px;
}

hr {
  margin-top: 0px;
  margin-bottom: 50px;
  margin-left: 20%;
  margin-right: 20%;
  border-bottom: 1px dotted #cacaca;
}


#page-contents img {
  border-radius: 4px;
}


#page-contents section:nth-child(2n) {
    background: rgba(0,0,0,0.04);
}


#page-contents section {
  padding: 100px 0;
  color: #45525b;
}

#page-contents section.dark {
  overflow: hidden; 
  background-image: linear-gradient(-20deg, #353535 0%,#353535 52%,rgba(0,0,0,0) 100%), url('/storyboarder/wood-texture.png');
  background-image: url('/storyboarder/wood-texture.jpg');
  background-size: cover;
 color: rgba(255,255,255,0.9);
}

#page-contents section.dark p {
  color: rgba(255,255,255,0.5);
}


#page-contents p {
  font-size: 16px;
}

#page-contents p.larger {
  font-size: 21px;
}


#page-contents h2, #page-contents h3 {
  margin-bottom: 30px;
}

#page-contents h2.small-margin {
  margin-bottom: 15px;
}

#page-contents h3 {
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 10px;
}


#page-contents h4 {
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 1px;
}

#page-contents .button {
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 40px 0;
    border-radius: 4px;
    background: #ddd;
}

.video {
  top: 0; left: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
}



.my-gallery {
  width: 100%;
  float: left;
}
.my-gallery img {
  width: 100%;
  height: auto;

  position: absolute;
  left: 50%;
  top: 50%;
/*  height: 100%;
  width: auto;*/
  -webkit-transform: translate(-50%,-50%);
      -ms-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);




}
.my-gallery figure {
  position: relative;
  display: block;
  float: left;
  margin: 0 5px 5px 0;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 5px;
}
.my-gallery figcaption {
  /*display: none;*/
}

.gallery { 
  padding: 10px;
  font-size: 0;
  display: -ms-flexbox;
  -ms-flex-wrap: wrap;
  -ms-flex-direction: column;
  -webkit-flex-flow: row wrap; 
  flex-flow: row wrap; 
  display: -webkit-box;
  display: flex;
}
.gallery div { 
  -webkit-box-flex: auto;
  -ms-flex: auto;
  flex: auto; 
/*  width: 200px; 
*/  
  height: 300px;
  margin: 20px; 
  width: auto; 
  background: red;
    overflow: hidden;
  border-radius: 5px;

}
.gallery div img { 
/*  height: 200px; 
*/  width: 100%; 
}
@media screen and (max-width: 400px) {
  .gallery div { margin: 0; }
  .gallery { padding: 0; }
  
}


nav {
  padding: 20px 0;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
}

nav .logo {
  margin-left: 0px;
  border-bottom: none;
}

nav .wonder {
  font-size: 15px;
  font-weight: 300;
  padding-left: 7px;
  text-transform: uppercase;
}

nav .dropdown {
  display: inline;
  overflow: hidden;
  position: relative;
}

nav .dropdown-content {
    display: none;
    position: absolute;
    z-index: 99;
    left: 0;
    top: 40px;
    width: 100%;
}

nav .dropdown-content a {
    display: block;
    width: fit-content;
}

nav .dropdown:hover .dropdown-content {
    display: block;
}


nav a {
  color: rgba(255,255,255,0.6);
  padding: 15px 0;
  margin-left: 20px;
  fill: rgba(255,255,255,0.5);
  transition: color .5s, fill .5s, border 0.5s;
    border-bottom: 5px solid rgba(255,255,255,0);

}

nav a:hover {
  color: rgba(255,255,255,0.9);
  fill: rgba(255,255,255,0.9);
  transition: color 0s, fill 0s, border 0.05s;
  border-bottom: 5px solid rgba(255,255,255,0.4);
}

nav a.logo:hover {
  border-bottom: none;
}


#download-link {
  display: block;
  margin-top: 50px;
  color: rgba(255,255,255,0.6);
}

#download-link:hover {
  color: rgba(255,255,255,1);
}


#wonderunitlogo-nav {
  width: 260px;
  vertical-align: -webkit-baseline-middle;
  /*fill: rgba(255,255,255,0.5);*/
 /*   top: -1px;*/
  position: relative;
  margin-bottom: 30px;
}


.wonderunitlogo-bottomfooter {
  width: 25px;
  vertical-align: text-top;
  position: relative;
  margin-bottom: 10px;
  margin-right: 10px;
}



/* FOOTER */

footer {
  padding-top: 50px;
  background: #5F7DB3;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  fill: rgba(255,255,255,0.5);
}

footer.black {
  background: rgba(0,0,0,0.8);
}


footer h4 {
  font-weight: 400;
  font-size: 18px;
}

footer a {
  color: rgba(255,255,255,0.8);
  fill: rgba(255,255,255,0.8);
}

footer a:hover, footer a:focus {
  color: rgba(255,255,255,1);
  fill: rgba(255,255,255,1);
}


footer .footer-bottom a {
  color: rgba(255,255,255,0.5) !important;
  fill: rgba(255,255,255,0.5) !important;
}

footer .footer-bottom a:hover {
  color: rgba(255,255,255,1) !important;
  fill: rgba(255,255,255,1) !important ;
}


footer .link-section {
  border-width: 0 0 0 1px;
  border-style: dotted;
  border-color: rgba(255,255,255,0.2);
  padding-left: 20px;
  padding-right: 10px;
  min-height: 180px;
  margin-bottom: 30px;

}

footer .footer-top {
  padding-bottom: 30px;
}

footer .footer-bottom {
  background: #494C83;
  padding-top: 20px;
}

footer.black .footer-bottom {
  background: rgba(0,0,0,1);
}



footer .button {
  width: 100%;
  background: #71C3DC;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  animation: none;
  display: block;
  font-size: 14px;
  padding: 20px;
}

footer .button:hover {
  background: #9FE7F7 !important;
  color: white;
}



footer .wonder-unit-blurb p {
  font-size: 18px;
}

footer h2 {
  font-weight: 300;
  font-size: 23px;
}

footer .wonder {
  font-weight: 300;
  font-size: 14px;
  padding-left: 10px;
  text-transform: uppercase;
}

footer .right {
  float: right;
}

.footer-bottom #wonderunitlogo-nav {
  width: 10px;
  vertical-align: middle;
  margin-right: 5px;
  top: -1px;
  position: relative;
}

footer ul {
  list-style: none;
  margin-left: 0;
}

.footer-bottom li {
  display: inline-block;
  margin-right: 10px;
}

.footer-bottom a:hover {
  color: white;
}

footer .copyright {
  font-size: 10px;
}

.preface {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.preface h2, .preface h3, .preface p {
  color: #636363;
  text-align: center;
  margin: 0;
}

.preface h2 {
  color: #0B0B0B;
  font-weight: 600;
}

.preface h3 {
  font-size: 1.5rem;
}

.preface > p {
  padding: 1rem 0;
  width: 60%;
  margin: 0 auto;
}

.feature {
  margin-top: 3rem;
}


.feature h4 {
  border-left: 1px solid #D3D3D3;
  padding-left: 15px;
  float: left;
}

.feature img {
  float: left;
  height: 32px;
  width: 32px;
  margin-right: 10px;
}

.feature p {
  float: left;
  text-align: left;
  width: 100%;
}

.team {
  padding-bottom: 3rem;
}

.team h2, .team h3, .team h5, .team p {
  color: #636363;
  text-align: center;
  margin: 0;
  line-height: 1em;
}

.team h2 {
  color: #0B0B0B;
  font-weight: 600;
}

.team h3 {
  font-size: 1.5rem;
}

.member h5 {
  color: #0B0B0B;
  font-size: 1rem;
  margin: 10px 0 5px 0;
}

.member {
  margin-top: 3rem;
}

.member img {
  height: auto;
  width: 100%;
}


.overlay {
  background: rgba(0,0,0,0.8);
  visibility: hidden;
  backface-visibility: hidden;
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1999;
  height: auto;
  transition: all 0.3s;
  opacity: 0;
}

.md-modal {
  z-index: 2000;
  position: fixed;
  width: 450px;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  visibility: hidden;
  backface-visibility: hidden;
}

.md-modal .content {
  background: white;
  border-radius: 6px;
  padding: 40px;
  transform: scale(0.9, 0.9);
  transition: all 0.1s ease-out;
  opacity: 0;
}


.md-show {
  visibility: visible;
  opacity: 1;
}

.md-show .content {
  visibility: visible;
  transform: scale(1, 1);
  opacity: 1;
}


.md-show ~ .overlay {
  opacity: 1;
  visibility: visible;
}



.hero-subheader__video video {
  position: absolute;
  top: 51%;
  left: 51%;
  min-width: 102%;
  min-height: 102%;
  width: auto;
  height: auto;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}

.margin-bottom-small {
  margin-bottom: 30px;
}

@media screen and (max-width: 64em) {
  #software-header h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 35px;
    padding-bottom: 10px;
  }

  footer .link-section {
    border: 0;
    border-style: none;
    border-color: rgba(255,255,255,0.2);
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 30px;
    min-height: inherit;
  }

  #article img.right {
    float: none !important;
    margin: 0px;
    width: 100%;
  }


}

