.bios .bio {
  display: block;
  overflow: hidden;
}
.bios .bio .container {
  display: table;
  margin: 0 auto;
  padding: 0;
}
@media only screen and (max-width: 475px) {
  .bios .bio .container {
    display: flex;
    flex-flow: column;
  }
}
.bios .bio:nth-child(2n) {
  background-color: #202020;
}
.bios .bio:nth-child(2n+1) {
  background-color: #282828;
}
.bios .bio:last-child {
  margin-bottom: 50px;
}
.bios .bio:hover .photo {
  /*width: 40%;*/
}
.bios .bio:hover .description {
  /*width: 59%;*/
}
.bios .bio .photo {
  overflow: hidden;
  width: 45%;
  display: table-cell;
  vertical-align: middle;
  line-height: 0rem;
}
.bios .bio .photo:first-child img {
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  /*border-right: solid 1px core.$accentColor1;*/
}
.bios .bio .photo:last-child img {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);
  /*border-left: solid 1px core.$accentColor1;*/
}
.bios .bio .photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media only screen and (min-width: 476px) and (max-width: 675px) {
  .bios .bio .photo {
    width: 30%;
  }
  .bios .bio .photo:first-child img, .bios .bio .photo:last-child img {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .bios .bio .photo img {
    height: 150px;
    width: 100%;
    display: block;
  }
}
@media only screen and (max-width: 475px) {
  .bios .bio .photo {
    height: 150px;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    box-ordinal-group: 1;
    order: 1;
  }
  .bios .bio .photo:first-child img, .bios .bio .photo:last-child img {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .bios .bio .photo img {
    height: 150px;
    width: 100%;
    display: block;
  }
}
.bios .bio .description-cell {
  width: 55%;
  vertical-align: middle;
  display: table-cell;
  height: 400px;
}
@media only screen and (min-width: 476px) and (max-width: 675px) {
  .bios .bio .description-cell {
    width: 70%;
  }
}
@media only screen and (max-width: 475px) {
  .bios .bio .description-cell {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    box-ordinal-group: 2;
    order: 2;
  }
}
.bios .bio .description {
  padding: 10px 20px;
}
.bios .bio .description .name {
  font-size: 1.05rem;
  font-weight: bold;
  padding: 5px;
}
.bios .bio .description .title {
  font-size: 1.05rem;
  color: #afafaf;
  padding: 5px;
}
.bios .bio .description .about {
  padding: 5px;
}