/* Font */


  
    
    
  

  
    
    
  

  
    
    
      
      @font-face {
        font-family: CustomFont;
        src: url("https://digitalworkerinquiry.com/font.ttf");
      }
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  

  
    
    
  


/* Basic elements */
body {
  background: #f0f0f0;
  text-align: center;
  font-family:
    
      CustomFont,
    
    Courier, monospace;
  margin: 0;
}

section {
  width: 100%;
  overflow: hidden;
}

section {
  font-size: 1.25em;
  padding: 1.5em 0;
}

section > * {
  padding: 0 2vw;
}

.items-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 1em 0;
}

.item-large {
  flex-grow: 1;
  flex-basis: 26%;
  padding: 0 3.65%;
}

.item-medium {
  flex-grow: 0.1;
  flex-basis: 19.5%;
  padding: 1% 2.15%;
}

.item-small {
  flex-grow: 0;
  flex-basis: 17%;
  padding: 0 1.5%;
  margin-bottom: 1em;
}

h1 {
  font-size: 3em;
}

h2 {
  font-weight: bold;
  font-size: 1.5em;
}


/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
}

tbody > tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.05);
}

tbody > tr:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.02);
}

tr {
  height: 3em;
}


/* Colors */
.tone-dark {
  background: #323BA2;
  color: #fff;
}

.tone-dark a {
  color: #ddd;
}

.tone-dark a:active,
.tone-dark a:focus,
.tone-dark a:hover {
  color: #fff;
}

.tone-light{
  background: #BBEDF2;
  color: #323BA2;
}

.tone-light a{
  color: #323BA2;
}

.tone-light a:active,
.tone-light a:focus,
.tone-light a:hover {
  color: #6D73B3;
}

.footer-tone {
  background-color: #232970;
  color: #fff;
  padding: 20px;
}

.footer-tone a {
  color: #ddd;
}

.footer-tone a:active,
.footer-tone a:focus,
.footer-tone a:hover {
  color: #fff;
}

/* Header */
.header {
  /* Fake a dark overlay with a gradient. Black is black... I want my sanity back... */
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/background.jpg') no-repeat center center;
  background-size: cover;
  min-height: 100vh;
  padding: 0;
}

.header p {
  font-size: calc(0.75em + 2vw);
  margin: 4vh 0 0 0;
}

.header img {
  max-width: 95%;
  margin: 5em auto 0 auto;
}


/* Action link, with trick to put a dark overlay */
.link-action {
  padding: 0.1em 0.3em;
  width: 200px;
  height: 150px;
  text-decoration: none;
  position: relative;
  border-radius: 25px;
}

.link-action:after {
  content: '\A';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.link-action:hover:after {
  background: rgba(0, 0, 0, 0.1);
}

.link-action:active:after {
  background: rgba(0, 0, 0, 0.2);
}


/* People */
.person-container {
  display: inline-block;
  margin: 0 0 2em 0;
  height: 400px;
  width: 300px;
}

.person-link .person-info {
  opacity: 0.7;
}

.person-link:active .person-info,
.person-link:hover  .person-info {
  opacity: 1;
}

.person-image {
  width: 10em;
  height: 10em;
  border-radius: 10px;
}

.person-info {
  background-color: rgba(146, 154, 240, 0.4);
  margin-top: 0.3em;
  padding: 0.5em;
  border-radius: 10px;
}

.person-info p {
  text-align: left;
  font-size: 16px;
}

.person-first {
  font-weight: 600;
}

.person-last {
  opacity: 0.7;
}

.committee-container {
  display: inline-block;
  margin: 0 0 2em 0;
}

/* Bio Read More */

.bio-holder {
  overflow: scroll;
  height: 100px;
  position: relative;
  padding: 5px 10px;
}

/* Projects */
.project-container {
  display: inline-block;
  margin: 0 0 2em 0;
  height: 400px;
  width: 600px;;
}
 /* Responsive project container for mobile */ 
@media only screen and (max-width: 600px) {
  .project-container {
    width: 300px;
  }
}
.project-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.description-holder {
  background-color: rgba(146, 154, 240, 0.4);
  overflow: scroll;
  height: 200px;
  position: relative;
  padding: 15px;
  text-align: justify;
  border-radius: 10px;
  margin-top: 1em;
}
/* Newsletter */
.newsletter {
  margin-top: 1em;
}

.newsletter input {
  background: #fff;
  border: 1px solid #999;
  box-sizing: border-box;
  padding: 0.5rem 0.8rem;
}

.newsletter input[type="email"] {
  box-sizing: border-box;
  width: 18rem;
}
.newsletter input[type="submit"]:hover {
  background: #eee;
}
.newsletter input[type="submit"]:active {
  background: #ccc;
}
 /* Navigation */

 .fixed-nav-bar {
  position: fixed;
  z-index: 100;
  width: 100%;
  background-color: #fff;
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
}

.fixed-nav-bar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: #fff;
  text-align: right;
}
.fixed-nav-bar li {
  display: inline-block;
}

.fixed-nav-bar li a {
  display: block;
  padding: 20px;
  border-right: 1px solid #f4f4f4;
  text-decoration: none;
}

.fixed-nav-bar li a:hover,
.fixed-nav-bar li a:active,
.fixed-nav-bar li a:focus {
  color: #6D73B3;
  text-decoration: none;
  background-color:#f4f4f4;
} 

.fixed-nav-bar .logo {
  display: block;
  float: left;
  font-size: 16px;
  padding: 10px 20px;
  text-decoration: none;
}
.fixed-nav-bar .logo img {
  width: 12em;
  height: auto;
}
.nav-anchor {
  color: #323BA2;
  text-decoration: none !important;
}

/* responsive menu */

.fixed-nav-bar .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

.fixed-nav-bar .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.fixed-nav-bar .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.fixed-nav-bar .menu-icon .navicon:before,
.fixed-nav-bar .menu-icon .navicon:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.fixed-nav-bar .menu-icon .navicon:before {
  top: 5px;
}

.fixed-nav-bar .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */
.fixed-nav-bar .menu-btn {
  display: none;
}

.fixed-nav-bar .menu-btn:checked ~ .menu {
  max-height: 240px;
}

.fixed-nav-bar .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.fixed-nav-bar .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.fixed-nav-bar .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.fixed-nav-bar .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.fixed-nav-bar .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

@media (min-width: 48em) {
  .fixed-nav-bar li {
    float: left;
  }
  .fixed-nav-bar li a {
    padding: 20px 30px;
  }
  .fixed-nav-bar .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  .fixed-nav-bar .menu-icon {
    display: none;
  }
}


/** Schedule **/
/* checkbox hack credit:  https://codepen.io/jonyablonski/pen/IrgBk */

.accordion input[name=schedule] {
  display: none;
}

.accordion label {
  position: relative;
  display: block;
  padding: 1em;
  transition: all 0.4s cubic-bezier(0.865, 0.14, 0.095, 0.87);
}

.accordion label:after {
  content: "+";
  position: absolute;
  right: 1em;
  width: 1.5em;
  height: 1.5em;
  color: #eee;
  text-align: center;
  border-radius: 50%;
  background: #323BA2;
  box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.5), 0 1px 0 #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.75);
}

.accordion label:hover {
  color: #323BA2;
}

.accordion input:checked + label {
  color: #323BA2;
}

.accordion input:checked + label:after {
  content: "-";
  /* adjust line-height to vertically center icon */
  line-height: 0.8em;
}

.accordion .accordion__content {
  overflow: hidden;
  height: 0px;
  position: relative;
  padding: 0 1.5em;
  text-align: left;
  font-size: 0.9em;
  transition: height 0.4s cubic-bezier(0.865, 0.14, 0.095, 0.87);
}

/* 
* Size Variations */

input[name=schedule]:checked ~ .accordion__content.accordion__content--small {
  /*height: 70px;*/
  height: 6em;
}

input[name=schedule]:checked ~ .accordion__content.accordion__content--large {
  /*height: 325px;*/
  height: 25em;
}

/* Fluid size - doesn't work for some reason
input[name=schedule]:checked ~ .accordion__content {
  max-height: 50em;
}
*/

/* Footer */