* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  font-size: 21px;
  font-family: Helvetica, Arial, sans-serif; }
  @media only screen and (max-width: 500px) {
    html {
      font-size: 14px; } }
  @media only screen and (max-width: 890px) {
    html {
      font-size: 19px; } }

body {
  background: #000e54;
  background: radial-gradient(circle, #00072a 44%, #200043 100%);
  color: #fff; }

nav.main-nav {
  position: fixed;
  width: 100vw;
  background-color: #104;
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: #fff;
  padding: 1rem;
  z-index: 1;
  font-family: Montserrat;
  font-weight: 300; }
  nav.main-nav #brand-name {
    display: inline-block; }
    nav.main-nav #brand-name a {
      color: #fff;
      font-size: 1.2rem;
      text-decoration: none;
      padding: 6px; }
      nav.main-nav #brand-name a:hover {
        background-color: #e6ddff;
        color: #104;
        cursor: pointer; }
  nav.main-nav li {
    display: inline-block;
    list-style: none; }
    @media only screen and (max-width: 890px) {
      nav.main-nav li {
        display: none; } }
    nav.main-nav li a {
      padding: 0.5rem 0.5rem;
      margin: 0.2rem 0.2rem;
      border-radius: 0.2rem;
      color: #fff;
      text-decoration: none; }
      nav.main-nav li a:hover {
        background-color: #e6ddff;
        color: #104;
        cursor: pointer; }
  nav.main-nav #menu-container {
    background: #f80;
    border: 2px solid #fff;
    color: #fff;
    height: 2rem;
    width: 2rem;
    border-radius: 50%;
    display: none; }
    @media only screen and (max-width: 890px) {
      nav.main-nav #menu-container {
        display: flex;
        justify-content: center;
        align-items: center; }
        nav.main-nav #menu-container:hover, nav.main-nav #menu-container:active {
          color: #f80;
          background-color: #fff;
          border: 2px solid #fff;
          cursor: pointer; } }

nav.side-nav {
  background-color: #104;
  opacity: 0;
  border-right: 1px solid #7344ff;
  transform: translateX(-75vw);
  transition: opacity 500ms, transform 500ms;
  position: fixed;
  z-index: 999;
  width: 75vw;
  height: 100vh;
  margin-left: auto;
  padding: 1rem;
  font-family: Montserrat; }
  nav.side-nav li {
    margin: 2rem 1rem;
    color: #fff;
    list-style: none;
    border-radius: 0.2rem; }
    nav.side-nav li a {
      padding: 0.5rem;
      border-radius: 0.2rem;
      color: inherit;
      text-decoration: none; }
      nav.side-nav li a:hover, nav.side-nav li a:active {
        background-color: #e6ddff;
        color: #104; }

li#cta a {
  background-color: #f80;
  text-align: center;
  font-weight: 400; }
  li#cta a:hover {
    background-color: white;
    color: #f80;
    cursor: pointer;
    padding: 0.4rem;
    border: 0.1rem solid #f80; }

div#back-drop {
  background-color: #104;
  position: fixed;
  display: none;
  opacity: 0.8;
  width: 100vw;
  height: 100vh;
  z-index: 999; }

header {
  height: 60vh;
  display: flex;
  flex-direction: column;
  padding-top: 6rem;
  justify-content: space-around;
  text-align: center;
  background-image: linear-gradient(rgba(32, 0, 67, 0.6), #200043), url("../img/world1.jpg");
  background-size: cover;
  background-position-x: center;
  background-attachment: fixed; }
  header h1 {
    color: #fff;
    user-select: none;
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    font-family: Montserrat;
    font-weight: 300;
    font-size: 2rem; }
    @media only screen and (max-width: 890px) {
      header h1 {
        font-size: 200%; } }
    @media only screen and (max-width: 500px) {
      header h1 {
        font-size: 150%; } }
  @media only screen and (max-width: 890px) {
    header p {
      font-size: 90%; } }
  @media only screen and (max-width: 500px) {
    header p {
      font-size: 80%; } }

h2, h3, h4, h5 {
  font-family: Montserrat;
  font-weight: 400; }

.expertise-header {
  background-image: linear-gradient(rgba(32, 0, 67, 0.6), rgba(32, 0, 67, 0.6)), url("../img/brain.jpg");
  background-size: cover;
  background-position-x: center;
  background-position-y: bottom;
  background-attachment: fixed; }

.tools-header {
  background-image: linear-gradient(rgba(32, 0, 67, 0.6), rgba(32, 0, 67, 0.6)), url("../img/tools.jpg");
  background-size: cover;
  background-position-x: center;
  background-position-y: bottom;
  background-attachment: fixed; }

.about-header {
  background-image: linear-gradient(rgba(32, 0, 67, 0.5), rgba(32, 0, 67, 0.5)), url("../img/about.jpg");
  background-size: cover;
  background-position-x: left;
  background-position-y: top;
  background-attachment: fixed; }

.blog-header {
  background-image: linear-gradient(rgba(32, 0, 87, 0.7), rgba(32, 0, 87, 0.7)), url("../img/blog.jpg");
  background-size: cover;
  background-position-x: center;
  background-position-y: bottom;
  background-attachment: fixed; }

.contact-header {
  background-image: linear-gradient(rgba(32, 0, 67, 0.6), rgba(32, 0, 67, 0.6)), url("../img/contact.jpg");
  background-size: cover;
  background-position-x: left;
  background-position-y: top;
  background-attachment: fixed; }

section {
  margin-bottom: 1rem; }

p.main-p {
  padding: 1rem 0.5rem;
  line-height: 1.4rem;
  max-width: 40rem;
  margin: auto; }

img.glory-shot {
  width: 100%;
  display: block;
  margin-top: 1.5rem;
  margin-bottom: 0rem;
  margin-left: auto;
  margin-right: auto; }

#intro {
  padding: 0px 10px; }

a {
  color: #fff; }

a.cta-btn {
  box-sizing: border-box;
  background-color: #f80;
  display: inline-block;
  text-align: center;
  color: #fff;
  padding: 12px 48px;
  text-decoration: none;
  border-radius: 0.3rem;
  font-family: Montserrat;
  font-weight: 400; }
  a.cta-btn:hover {
    background-color: white;
    color: #f80;
    cursor: pointer;
    border: 2px solid #f80; }
  @media only screen and (max-width: 890px) {
    a.cta-btn {
      font-size: 70%;
      padding: 12px 12px; } }

div.cta-flex {
  text-align: center;
  margin: 0.5rem auto; }

.email {
  color: #ffb866;
  font-weight: 400; }

.shifted-list {
  padding-left: 2rem;
  margin-top: 1rem; }
  .shifted-list li {
    margin: 1rem;
    line-height: 1.5rem; }

div.form-container {
  margin: auto; }

form.contact-form {
  max-width: 38rem;
  margin: 0px auto; }
  form.contact-form input, form.contact-form select, form.contact-form textarea {
    border: 3.5px solid #f80;
    display: block;
    width: 100%;
    border-radius: 0.5rem;
    padding: 0.2rem;
    background-color: #e6ddff;
    font-family: Montserrat;
    font-size: 1rem; }
  form.contact-form label {
    display: block;
    margin-top: 0.5rem; }
  form.contact-form input[type='submit'] {
    background-color: #f80;
    margin-top: 0.5rem;
    padding: 0.5rem;
    color: #fff; }

p.tools-body {
  white-space: pre-line;
  line-height: 1.3rem;
  padding: 0.5rem; }

div.deliv-container {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: space-between;
  flex-wrap: wrap; }
  div.deliv-container div.deliv-square {
    height: 400px;
    width: 300px;
    border: 3px solid #9977ff;
    margin: 1rem;
    background-color: #104;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-content: center; }
    div.deliv-container div.deliv-square div {
      height: 130px;
      font-weight: 300;
      color: #fff;
      text-align: center;
      margin: 0;
      display: flex;
      justify-content: center;
      align-items: center; }
    div.deliv-container div.deliv-square #database {
      background-image: linear-gradient(rgba(32, 0, 67, 0.7), rgba(32, 0, 67, 0.9)), url("../img/thumbs/database.jpg"); }
    div.deliv-container div.deliv-square #dashboard {
      background-image: linear-gradient(rgba(32, 0, 67, 0.7), rgba(32, 0, 67, 0.9)), url("../img/vis-thumb.jpg"); }
    div.deliv-container div.deliv-square #segmentation {
      background-image: linear-gradient(rgba(32, 0, 67, 0.7), rgba(32, 0, 67, 0.9)), url("../img/thumbs/segmentation.jpg"); }
    div.deliv-container div.deliv-square #projection {
      background-image: linear-gradient(rgba(32, 0, 67, 0.8), rgba(32, 0, 67, 0.95)), url("../img/thumbs/projection.jpg"); }
    div.deliv-container div.deliv-square #mining {
      background-image: linear-gradient(rgba(32, 0, 67, 0.7), rgba(32, 0, 67, 0.9)), url("../img/thumbs/mining.jpg"); }
    div.deliv-container div.deliv-square #sentiment {
      background-image: linear-gradient(rgba(32, 0, 67, 0.7), rgba(32, 0, 67, 0.9)), url("../img/thumbs/sentiment.jpg"); }
    div.deliv-container div.deliv-square #open-source {
      background-image: linear-gradient(rgba(32, 0, 67, 0.7), rgba(32, 0, 67, 0.9)), url("../img/thumbs/open-source.jpg"); }
    div.deliv-container div.deliv-square #management {
      background-image: linear-gradient(rgba(32, 0, 67, 0.7), rgba(32, 0, 67, 0.9)), url("../img/thumbs/management.jpg"); }
    div.deliv-container div.deliv-square #ctr {
      background-image: linear-gradient(rgba(32, 0, 67, 0.95), rgba(32, 0, 67, 0.85)), url("../img/thumbs/ctr.png"); }
    div.deliv-container div.deliv-square #churn {
      background-image: linear-gradient(rgba(32, 0, 67, 0.9), rgba(32, 0, 67, 0.9)), url("../img/thumbs/churn.png"); }
    div.deliv-container div.deliv-square #pricing {
      background-image: linear-gradient(rgba(32, 0, 67, 0.6), rgba(32, 0, 67, 0.7)), url("../img/thumbs/pricing.jpg"); }
    div.deliv-container div.deliv-square #lifetime {
      background-image: linear-gradient(rgba(32, 0, 67, 0.7), rgba(32, 0, 67, 0.9)), url("../img/thumbs/lifetime.jpg"); }
    div.deliv-container div.deliv-square p {
      color: #fff;
      font-size: 0.85rem;
      padding: 1rem; }
    div.deliv-container div.deliv-square a {
      text-align: right;
      color: #ffac4d;
      padding: 1rem; }
    @media only screen and (max-width: 320px) {
      div.deliv-container div.deliv-square {
        width: 100%;
        margin: 0.5rem 0; } }
    div.deliv-container div.deliv-square:hover, div.deliv-container div.deliv-square:active {
      border: 3px solid white; }

div.author-box {
  margin: auto;
  border-bottom: 1px solid #104;
  padding: 0.2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap; }
  @media only screen and (max-width: 500px) {
    div.author-box {
      font-size: 0.7rem;
      flex-wrap: nowrap; } }
  div.author-box img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: inline-block; }
    @media only screen and (max-width: 500px) {
      div.author-box img {
        width: 1.5rem;
        height: 1.5rem; } }
  div.author-box a {
    display: inline-block;
    margin: 0 0.5rem;
    color: #104;
    font-size: 1.5rem; }
    @media only screen and (max-width: 500px) {
      div.author-box a {
        margin: 0; } }
  div.author-box div {
    margin: 0 0.5rem; }

.blog-post-header {
  height: 35vh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background-image: linear-gradient(rgba(36, 0, 60, 0.8), #24003c);
  line-height: 2rem; }
  .blog-post-header h1 {
    display: block;
    font-size: 2rem;
    line-height: 2.2rem; }
    @media only screen and (max-width: 890px) {
      .blog-post-header h1 {
        font-size: 1.8rem;
        line-height: 2rem; } }
    @media only screen and (max-width: 500px) {
      .blog-post-header h1 {
        font-size: 1.4rem;
        line-height: 1.6rem; } }

figcaption {
  font-size: 0.8rem;
  font-style: italic;
  margin-bottom: 2rem; }

div.preview-container {
  max-width: 48rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around; }

div.blog-preview {
  border: 1px solid #ac91ff;
  width: 22rem;
  margin: 1rem auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.5rem; }
  div.blog-preview:hover, div.blog-preview:active {
    border-color: #fff; }
  div.blog-preview .preview-title {
    font-weight: 400;
    font-size: 130%;
    margin: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #fff;
    text-align: left; }
    div.blog-preview .preview-title a {
      text-decoration: none; }
      div.blog-preview .preview-title a:hover, div.blog-preview .preview-title a:active {
        color: #ffb866;
        text-decoration: underline; }
  div.blog-preview .preview-body {
    margin: 1rem auto; }
  div.blog-preview .read-more {
    text-align: right;
    margin-right: 2rem;
    text-decoration: none;
    padding: 0.5rem; }
    div.blog-preview .read-more .read-more {
      color: #ffb866; }
    div.blog-preview .read-more:hover, div.blog-preview .read-more:active {
      color: #ffb866;
      text-decoration: underline; }

.blog-post {
  background: none;
  background-color: #eee;
  line-height: 1.5rem;
  color: #333;
  font-family: Montserrat;
  font-weight: 500; }
  .blog-post footer {
    background-color: #104;
    color: #fff; }

div.blog-body {
  max-width: 45rem;
  padding: 0.5rem;
  margin: 0rem auto; }
  div.blog-body a {
    color: #cc6d00; }

p.blogp {
  white-space: pre-line;
  border-radius: 10px; }

.blog-title {
  margin: 1.5rem auto;
  margin-top: 3rem;
  border-bottom: 3px solid #338;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  color: #338;
  line-height: 2.5rem; }
  .blog-title font {
    family: Montserrat;
    weight: 600;
    size: 150%; }

.blog-feature {
  display: block;
  color: #338;
  border: 2px solid #338;
  margin: 2rem auto;
  text-align: center;
  padding: 1rem;
  font-size: 1.2rem;
  font-weight: 600; }

div.date-since {
  margin-top: 1rem;
  font-size: 0.8rem;
  font-style: italic; }

div.blog-cover {
  width: 95%;
  height: 15rem;
  background-position: center;
  background-size: cover;
  margin: 0 auto; }
  @media only screen and (max-width: 500px) {
    div.blog-cover {
      height: 8rem; } }

ul.pagination {
  margin-right: auto; }
  ul.pagination li.page-item {
    width: 2rem;
    height: 2rem;
    list-style: none;
    border: 1px solid #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center; }
    ul.pagination li.page-item a {
      text-decoration: none;
      font-weight: 300;
      margin: 0 auto; }
  ul.pagination li.active {
    background-color: #fff; }
    ul.pagination li.active a {
      color: #104; }

div.container {
  max-width: 50rem;
  margin: 1rem auto; }

h1.section-title {
  margin: 2rem auto;
  border-bottom: 1px solid white;
  padding-left: 1rem;
  font-family: Montserrat;
  font-weight: 300;
  font-size: 150%; }
  @media only screen and (max-width: 500px) {
    h1.section-title {
      font-size: 120%; } }

h1.section-title-cta {
  color: #ffb866;
  padding-left: 1rem;
  margin: 2rem auto;
  border-bottom: 1px solid #ffb866;
  font-family: Montserrat;
  font-weight: 300;
  font-size: 150%; }
  @media only screen and (max-width: 500px) {
    h1.section-title-cta {
      font-size: 120%; } }

#email {
  color: #ffb866;
  font-weight: 400; }

div.service-flex {
  display: flex;
  box-sizing: border-box;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  border-bottom: 2px solid #9977ff;
  margin: 0rem auto;
  padding: 2px; }
  div.service-flex:hover, div.service-flex:active {
    border: 2px solid #e6ddff;
    padding: 0px; }

div.reverse {
  flex-direction: row-reverse; }

div.title {
  color: #fff;
  height: 300px;
  width: 40%;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center; }
  div.title h2 {
    text-align: center;
    font-family: Montserrat;
    font-weight: 300; }
  @media only screen and (max-width: 890px) {
    div.title {
      width: 40%; } }
  @media only screen and (max-width: 500px) {
    div.title {
      width: 100%;
      height: 200px; } }

div.description {
  padding: 5px 10px;
  width: 40%;
  color: #fff;
  min-height: 250px;
  display: flex;
  align-items: center;
  font-family: Montserrat;
  letter-spacing: 1px; }
  @media only screen and (max-width: 890px) {
    div.description {
      width: 40%; } }
  @media only screen and (max-width: 500px) {
    div.description {
      width: 100%; } }

#analytics {
  background-image: linear-gradient(rgba(32, 0, 67, 0.7), rgba(32, 0, 67, 0.9)), url("../img/visualization2.jpg"); }

#machine-learning {
  background-image: linear-gradient(rgba(32, 0, 67, 0.6), rgba(32, 0, 67, 0.6)), url("../img/brain2-med.jpg"); }

#scraping {
  background-image: linear-gradient(rgba(32, 0, 67, 0.6), rgba(32, 0, 67, 0.7)), url("../img/scraping2.jpg"); }

#visualization {
  background-image: linear-gradient(rgba(32, 0, 67, 0.7), rgba(32, 0, 67, 0.7)), url("../img/visualization3.jpg"); }

#forecasting {
  background-image: linear-gradient(rgba(32, 0, 67, 0.9), rgba(32, 0, 67, 0.95)), url("../img/forecast.jpg"); }

#AB_testing {
  background-image: linear-gradient(rgba(32, 0, 67, 0.5), rgba(32, 0, 67, 0.5)), url("../img/cloud.jpg"); }

#large-svg {
  margin: 0 auto; }
  #large-svg .node circle {
    fill: #fc3;
    stroke: #fc3;
    stroke-width: 3px; }
  #large-svg .node {
    font: 16px sans-serif;
    fill: #fff; }
  #large-svg .link {
    fill: none;
    /* stroke: #0aa; */
    stroke: #a51;
    stroke-width: 4px; }
  #large-svg .link:hover,
  #large-svg .link:active {
    stroke: #fc3; }
  #large-svg .node:hover,
  #large-svg .node:active {
    fill: #fc3; }
  @media only screen and (max-width: 2400px) {
    #large-svg {
      display: block; } }
  @media only screen and (max-width: 890px) {
    #large-svg {
      display: none; } }
  @media only screen and (max-width: 500px) {
    #large-svg {
      display: none; } }

#medium-svg {
  margin: 0 auto;
  display: none; }
  #medium-svg .node circle {
    fill: #fc3;
    stroke: #fc3;
    stroke-width: 3px; }
  #medium-svg .node {
    font: 14px sans-serif;
    fill: #fff; }
  #medium-svg .link {
    fill: none;
    /* stroke: #0aa; */
    stroke: #a51;
    stroke-width: 3px; }
  #medium-svg .link:hover,
  #medium-svg .link:active {
    stroke: #fc3; }
  #medium-svg .node:hover,
  #medium-svg .node:active {
    fill: #fc3; }
  @media only screen and (max-width: 2400px) {
    #medium-svg {
      display: none; } }
  @media only screen and (max-width: 890px) {
    #medium-svg {
      display: block; } }
  @media only screen and (max-width: 500px) {
    #medium-svg {
      display: none; } }

#small-svg {
  margin: 0 auto;
  display: none; }
  #small-svg .node circle {
    fill: #fc3;
    stroke: #fc3;
    stroke-width: 4px; }
  #small-svg .node {
    font: 7.5px sans-serif;
    fill: #fff; }
  #small-svg .link {
    fill: none;
    /* stroke: #0aa; */
    stroke: #a51;
    stroke-width: 2px; }
  #small-svg .link:hover,
  #small-svg .link:active {
    stroke: #fc3; }
  #small-svg .node:hover,
  #small-svg .node:active {
    fill: #fc3; }
  @media only screen and (max-width: 500px) {
    #small-svg {
      display: block; } }

div.nas-description {
  width: 40%;
  color: #fff;
  min-height: 250px;
  display: flex;
  align-items: left;
  font-family: Montserrat; }
  @media only screen and (max-width: 890px) {
    div.nas-description {
      width: 40%; } }
  @media only screen and (max-width: 500px) {
    div.nas-description {
      width: 100%; } }

#about_me {
  background-image: linear-gradient(rgba(32, 0, 67, 0.5), rgba(32, 0, 67, 0.6)), url("../img/nas_cropped.jpg"); }

#about_list {
  padding: 20px 20px; }
  #about_list h3 {
    margin-bottom: 10px; }
  #about_list a {
    color: #fff; }

.contact_entry {
  display: block;
  text-align: center; }

div.nas-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  border-bottom: 2px solid #9977ff;
  margin: 0rem auto; }
  div.nas-flex:hover, div.nas-flex:active {
    border: 2px solid #e6ddff; }

footer {
  border-top: 0.5px solid #bfaaff;
  padding-top: 2rem;
  font-size: 0.7rem;
  text-align: center; }
  footer #lower {
    margin: 1rem auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    text-decoration: none;
    max-width: 28rem; }
    footer #lower ion-icon {
      font-size: 1.5rem; }
    footer #lower div {
      margin: 2px;
      font-size: 0.8rem; }
    @media only screen and (max-width: 890px) {
      footer #lower #copyright {
        order: -1;
        width: 100%; } }
    footer #lower li {
      margin: 0.2rem; }
    footer #lower span {
      color: #ffcf99;
      font-weight: 600;
      margin-bottom: 0.5rem; }

/*# sourceMappingURL=main.css.map */
