.image-mask {
  display: none;
}

/* INTRO VIEW */
/******************************************/
#intro-view .text {
  padding: 10px 0 50px 0;
  border-bottom: 2px solid #000;
}

#intro-view p {
  font-size: 1.4em;
  line-height: 1.2em;
}

/* ABOUT VIEW */
/******************************************/
#about-view {
  margin-top: 46px;
}

#about-view .table {
  padding-top: 38px;
}

#about-view table {
  padding: 38px 0 0 0;
  width: 100%;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}

#about-view th {
  font-family: 'Work Sans', sans-serif;
  padding: 8px 0 16px 0;
  font-size: 1.6em;
  line-height: 1.3em;
  font-weight: 700; /* Bold */
}

#about-view tr {
  display: table-row;
  margin: initial;
}

#about-view td {
  width: 50%;
  padding: 8px 0;
  border-top: 2px solid #000;
  vertical-align: top;
}

#about-view td.title {
  font-weight: bold;
}

#about-view td:first-child {
  width: 30%;
}

#about-view td:nth-child(4n) {
  width: 70%;
}

/* JOURNAL VIEW */
/******************************************/
#journal-view {
  padding-top: 74px;
  border-bottom: 2px solid #000;
}

#journal-view h1 {
  font-weight: 700; /* Bold */
  padding: 16px 0 46px 0;
  border-top: 2px solid #000;
  line-height: 1.1em;
}

#journal-view h1.title {
  font-size: 1.6em;
}

#journal-view .journal-post {
  font-size: 1.2em;
  color: #979BA0;
}

#journal-view .journal-post h1 {
  font-family: 'helvetica';
  padding: 0;
  border: none;
  color: #000;
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
  #about-view th {
    font-size: 2.2em;
  }

  #journal-view h1.title {
    font-size: 2.2em;
  }

  .image-nomask {
    display: none;  
  }

  .image-mask {
    display: block;
    height: 640px;
  }
}

/* Small devices (tablets, 992px and up) */
@media (min-width: 992px) {
  #about-view .tables {
    margin: 0 -10px;
    display: flex;
    flex-wrap: wrap;    
  }

  #about-view .table {
    padding-left: 10px;
    padding-right: 10px;
    width: 50%;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}