.advanced-technologies {
    background-color: rgba(0, 141, 168, 0.1);
  }

  .business-and-services-industries {
    background-color: rgba(121, 193, 66, 0.1);
  }

  .creative-computing-and-professional-industries {
    background-color: rgba(113, 18, 113, 0.1);
  }

  .health-social-care-and-access {
    background-color: rgba(239, 178, 33, 0.1);
  }

@media screen and (min-width: 600px) {
  span.advanced-technologies,
  span.business-and-services-industries,
  span.creative-computing-and-professional-industries,
  span.health-social-care-and-access {
    padding: 8px 16px;
  }
}

@media screen and (max-width: 600px) {
  span.advanced-technologies,
  span.business-and-services-industries,
  span.creative-computing-and-professional-industries,
  span.health-social-care-and-access {
    background: none;
  }
}


  .profile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 10px;
    padding: 8px 16px 16px 8px;
    border: 1px solid #ccc;
    border-radius: 20px;
    max-width: 500px;
    box-shadow: 5px 5px 10px 0 #ccc;
    line-height: 1;
  }

    @media screen and (min-width: 600px) {
    .profile {
      flex-direction: row;
    }
  }

  .profile-info {
    display: flex;
    align-items: center;
    padding: 8px;
    padding-bottom: 0;
    min-width: 175px;
    
  }

  @media screen and (min-width: 600px) {
    .profile-info {
      flex-direction: column;
      
    }
  }

  .profile-photo-thumbnail {
    width: 100px;
    min-width: 100px;
    margin-bottom: 8px;
  }

  .profile-photo-thumbnail img {
    border: 3px solid #003f5f;
    border-radius: 50%;
  }

  .profile-details {
    display: flex;
    flex-direction: column;
    margin-left: 16px;
  }

  .profile-name {
    font-size: 1.5em;
    font-weight: 700;
  }

@media screen and (min-width: 600px) {
    .profile-name {
    font-size: 1em;
  }
}

  .profile-role {
    font-size: 1em;
    max-width: 200px;
  }

@media screen and (min-width: 600px) {
  .profile-role {
    font-size: 0.9em;
  }
}

@media screen and (min-width: 600px) {
  .profile-quote {
    display: flex;
    flex-direction: column;
  }
}
  .profile-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 16px 0;
  }
	
blockquote {
    display: none;
}

@media screen and (min-width: 400px) {
  blockquote {
    display: block;
    max-width: 75ch;
    font-size: 1em !important;
    line-height: 1.5;
    margin: 0 !important;
    border-top: 2px solid #ccc !important;
    border-bottom: 2px solid #ccc !important;
  }
}

@media screen and (min-width: 600px) {
  blockquote {
    border: none !important;
    border-left: 2px solid #ccc !important;
  }
}

blockquote:before,
blockquote:after {
   display: inline !important;
   border: none !important;
}
@media screen and (min-width: 600px) {
blockquote:before,
blockquote:after {
   font-size: 1.5em;
   line-height: 0.5;
}
}

blockquote:before,
blockquote:after {
   content: '\0022';
}

@media screen and (min-width: 600px) {
  blockquote:before {
    content: '\275D';
  }
}


@media screen and (min-width: 600px) {
blockquote:after {
   content: '\275E';
}
}

.department-header {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 1060px) {
.department-header {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
position: relative;
}
}

  .department-dropdown-menu {
    display: flex;
    position: relative;
    justify-content: center;
  }

  @media screen and (min-width: 1060px) {
    .department-dropdown-menu {
      position: absolute;
      top: 16px;
      right: 16px;
    }
  }

  select {
    border: none;
    padding: 8px;    
    max-width: 200px;
-webkit-appearance: none;
  -moz-appearance: none;
  background-color: rgba(0,174,239,1);
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 95%;
  background-position-y: 50%;
  border-radius: 2px;
  }

  option {
    background-color: #fff;
    color: #000;
    padding-block-end: 8px;
}


/* Main Profile Page */

.profile-photo {
  display: none;
}


@media screen and (min-width: 800px) {
  .profile-photo {
    display: block;
    float: right;
    margin: -32px 0 16px 16px;
  }
}

p + ul > li,
p + ol > li {
   margin: 1em 50px;
}


p + ul > li {
   list-style-type: disc;
}

p + ol > li {
   list-style-type: decimal;
}