@charset "UTF-8";
/* DEFAULT */
@media only screen {
  .anchor {
    border-bottom: 2px dashed #BDBDBD;
    margin: 0;
  }
  .anchor a {
    text-decoration: none;
  }
  .feature {
    background-color: #FFFFFF;
    padding: 1vw;
  }
  .sb-pic {
    height: auto;
    max-width: 250px;
    width: 15vw;
  }
  .storyboard {
    background-color: #BDBDBD;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 1px;
    grid-row-gap: 1px;
  }
  #blank {
    display: none;
  }
  #megamenu {
    border: 1px solid #BDBDBD;
    margin: 2vw;
    -webkit-box-shadow: 0px 0px 10px 4px #BDBDBD;
    box-shadow: 0px 0px 10px 4px #BDBDBD;
  }
  #special {
    font-size: 20px;
    line-height: 1.1em;
  }
}
/* MEGAPIXEL */
@media only screen and (min-width: 1951px) {
  #megamenu {
    margin: 1px 7vw;
  }
}
/* DESKTOP */
@media only screen and (max-width: 1250px) {
  .storyboard {
    background-color: #BDBDBD;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 1px;
    grid-row-gap: 1px;
  }
  #blank {
    display: block;
  }
}
/* LAPTOP */
@media only screen and (max-width: 900px) {
  .sb-pic {
    width: 20vw;
  }
  .storyboard {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  #blank {
    display: none;
  }
}
/* MOBILE */
@media only screen and (max-width: 600px) {
  .sb-pic {
    width: 40vw;
  }
  .storyboard {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
  }
}