/* Reset some default styles and set a basic font */
.site-header{
    background-color: #3A1E49;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }

  p{
    margin-left: 0;
  }

  a{
    color: #0042EB;
    font-family: lato;
    font-weight: 400;
  }

  .site-content{
    max-width: 1080px;
  }

  .entry-title{
    display:none;
  }
  
  /* Style the banner section */
  .banner {
    background-color: #f2f2f2;
    padding: 0px;
    text-align: center;
    position: relative;
    display: inline-block;
    margin-top: 8rem;
  }
  
  .banner img.banner_image {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  .banner .banner_image_text {
    font-size: 20px;
    margin-top: 10px;
    color: #333;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFF;
    text-align: center;
    text-shadow: 1px 1px 1px #000;
    font-family: lato;
    font-size: 2.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    width: 1000px; 
  }
  
  /* Style the main content section */
  .content {
    width: 100%;
    margin: 0 auto;
  }
  
.content-area{
    width: 100%;
    margin-right: 0;
    float: none;
}

  .left-column {
    width: 50%;
    float: left;
    margin-top: 3rem;
    padding-left: 2rem;
  }
  
  .right-column {
    width: 50%;
    float: left;
    margin-top: 3rem;
    padding-right: 2rem;
  }
  
  /* Style the header and paragraph in the left column */
  .overview_header {
    font-size: 1.25rem;
    font-family: lato;
    color: #333;
    margin-left:0;
    font-weight: 500;
    margin-top: 0;
  }
  
  .overview {
    font-size: 1rem;
    color: #000;
    margin-left: 0;
    font-family: lato;
    margin-right: 6rem;
    margin-top: 2rem;
    line-height: 160%;
    font-weight: 100;
  }
  
  /* Style the project list in the right column */
  .project-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  
  .project-list li {
    margin-bottom: .66rem;
  }
  
  .project-list li h3 {
    font-size: 1rem;
    color: #333;
    margin-left: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 0.66rem;
    margin-bottom: 0.33rem;
  }
  
  .project-list li p {
    font-size: 14px;
    color: #666;
    font-family: lato;
    margin-bottom: 0.66rem;
    margin-top: 0.33rem;
    font-weight: 100;
  }

  li.research_project{
    border-bottom: 1px solid #AFAFAF;
  }

  .project-list li {
    position: relative; /* Add this to make positioning the arrow relative to the list item */
}

.project-list li .go_arrow {
    position: absolute; /* Position the arrow absolutely within the list item */
    top: 50%; /* Vertically center the arrow */
    right: 0; /* Position the arrow on the right side of the list item */
    transform: translateY(-50%); /* Vertically center the arrow */
}

.project-list li {
    position: relative;
    border-bottom: 1px solid #AFAFAF;
    transition: border-bottom 0.3s ease, transform 0.3s ease; /* Add transition for both border and transform */
}

.project-list li:hover {
    transform: translateX(5px); /* Adjust the number of pixels to your preference */
}

.research_project_title:hover{
    text-decoration: underline;
    color: #0042EB;
}

  .research_topics_header{
    margin: 0;
    margin-bottom: 2rem;
    font-family: lato;
    font-size: 1.25rem;
    font-weight: 500;
  }
  
 
  
/* Ash's page specific Mobile styles */


/* Add mobile styles here */
@media only screen and (max-width: 500px) {
  .content {
      display: flex;
      flex-direction: column;
      margin-right: 12px;
      margin-left: 12px;
  }

  .left-column, .right-column {
      width: 100%; /* Make both columns full width */
  }

  .research_topics_header {
      margin-top: 20px; /* Add some space between the headers */
  }

  .project-list {
      padding-left: 0; /* Remove default padding for the list */
  }

  .research_project {
      margin-bottom: 20px; /* Add space between individual research projects */
  }

  .banner .banner_image_text {
      font-size: 1.4rem;
  }


  .banner .banner_image_text {
    width: 300px;

  }

  .go_arrow{
    display: none;
  }

  .overview{
    margin-right: 2rem;
  }

  ul.project-list{
    margin-right: 2rem;
  }
}

@media only screen and (max-width: 500px) {
  .banner {
      margin-top: 1rem;
  }












/* Adam's Mobile Styles */

@media only screen and (max-width: 500px) {
    .entry-content{
        margin-top:1rem;
        margin-left: 16px;
        margin-right: 16px;
        display: flex;
        flex-direction: column;
    }
  }
  
  @media only screen and (max-width: 500px) {
    .header_container{
    margin-left: 0;
    margin-right: 1rem;
    }
  }
  
  
  @media only screen and (max-width: 500px) {
    ul.breadcrumb{
    height: 1rem;
    width: 80%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    }
  }
  
  @media only screen and (max-width: 500px) {
    
    .breadcrumb:after{
    content: "";
    display: none;
    float: none;
    clear: left;
    margin: 0 auto;
    margin-top: 0.66rem;
    border-bottom: 1px solid #000000;
    margin-left: auto;
    margin-right: auto;
    }
  }
  
  @media only screen and (max-width: 500px) {
    .title_container {
        width: 100%;
        margin-left: 0;
        display: block;
        margin-top: 2rem;
    }
  
  @media only screen and (max-width: 500px) {   
    h4.project_pre-title {
        font-size: .8rem;
        padding-bottom: 1rem;      
    }
  }
  
  @media only screen and (max-width: 500px) {
    .researchers_container {
    margin-top: 1rem;
    margin-left: 0;
    }
  }
  
  @media only screen and (max-width: 500px) {
    .pis_header {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-bottom: 0.66rem;
    }
  }
  
  @media only screen and (max-width: 500px) {
    a.pi {
    font-size: 0.8rem;
    text-transform: none;
    border: 0.5px solid;
    border-color: #a7d0f4;
    background-color: #cde4f8;
    border-radius: 50px;
    padding: 5px;
    padding-left: 12px;
    padding-right: 12px;
    text-decoration: none;
    box-shadow: rgba(0, 0, 0, 0.2) 0.5px 0.5px 0.5px;
    }
  }
  
  @media only screen and (max-width: 500px){
    li.pi_unlisted {
      font-size: 0.8rem !important;
      font-family: 'lato' !important;
      text-transform: none;
      border: 0.5px solid;
      border-color: #383838;
      background-color: #ffffff;
      color: #383838 !important;
      border-radius: 50px;
      padding: 5px;
      padding-left: 12px;
      padding-right: 12px;
      line-height: normal;
      text-decoration: none;
      box-shadow: rgba(0, 0, 0, 0.2) 0.5px 0.5px 0.5px;
    }
  }
  
  @media only screen and (max-width: 500px) {
    ul.pi_names {
    margin-top:0.5rem;
    margin-bottom: 0.5rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    }
  }
  
  @media only screen and (max-width: 500px) {
    ul.pi_names li {
    font-size: 1.2rem;
    text-decoration: none;
    margin-right: .5rem;
    margin-bottom: 0.5rem;
    }
  }
  
  @media only screen and (max-width: 500px) {
    .pis_container {
    padding-left: 0rem;
    border-left: none;
    width: 100%;
    }
  }
  
  @media only screen and (max-width: 500px) {
    .pis_container:after {
      content: "";
      display: block;
      float: none;
      clear: left;
      margin: 0 auto;
      margin-top: 1rem;
      border-bottom: 1px solid #000000;
      margin-left: auto;
      margin-right: auto;
    }
  }
  
  
  @media only screen and (max-width: 500px) {
    .collaborators_container {
    padding-left: 0rem;
    margin-top: 1rem;
    border-left: none;
    
    }
  }
  
  @media only screen and (max-width: 500px) {
    span.researcher_comma {
    display:none !important;
    }
  }
  
  @media only screen and (max-width: 500px) {
    ul.collaborator_names li {
    font-size: 0.8rem;
    line-height: 100%;
    font-weight: 400;
    margin-bottom: .66rem;
    }
  }
  
  @media only screen and (max-width: 500px) {
    ul.collaborator_names {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    }
  }
  
  @media only screen and (max-width: 500px) {
    .collaborators_header {
      font-size: 1.2rem;
      margin-top: 1rem;
      margin-bottom: 0.66rem;
      border-left: none;
      font-weight: 400;
    }
  }
  
  @media only screen and (max-width: 500px) {
    .collaborator {
      font-size: 0.8rem;
      text-transform: none;
      border: 0.5px solid;
      background-color: #ffffff;
      border-radius: 50px;
      padding: 5px;
      padding-left: 12px;
      padding-right: 12px;
      text-decoration: none;
      box-shadow: rgba(0, 0, 0, 0.2) 0.5px 0.5px 0.5px;
      margin-right: .5rem;
    }
  }
  
  
  @media only screen and (max-width: 500px) {
    .featured_image_research_page {
    margin-left: 0;
    margin-top: 3rem;
    border: solid 1px black !important;
    width: -webkit-fill-available;
    padding: 8px;
    padding-top: 14px;
    padding-bottom: 14px;
    }
  }
  
  @media only screen and (max-width: 500px) {
    .summary_container {
    margin-left: 0;
    margin-top: 1rem;
    margin-top: 4rem;
    }
  }
  
  @media only screen and (max-width: 500px) {
    h4.summary_title {
    font-size: 1.375rem;
    font-weight: 400;
    margin-bottom: 1rem;
    }
  }
  
  @media only screen and (max-width: 500px) {
    .summary {
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 300;
    margin-top: 0;
    }
  }
  
  @media only screen and (max-width: 500px) {
    .dropdown_container{
        margin-left: 0;
    }
  }
  
  @media only screen and (max-width: 500px) {
    h4.follow_this_research_title {
    font-size: .75rem;
    font-weight: 400;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-top: solid 1px #BBBBBB;
    border-bottom: solid 1px #BBBBBB;
    background-color: white;
    }
  }
  
  /* @media only screen and (max-width: 500px) {
    h4.follow_this_research_title:hover {
    font-size: .75rem;
    font-weight: 400;
    margin-left: 2.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-top: solid 1px #BBBBBB;
    border-bottom: solid 1px #BBBBBB;
    background-color: white;
    color: blue;
    }
  } */
  
  @media only screen and (max-width: 500px) {
    .follow_this_research_container {
      margin-right: auto;
      margin-left: auto;
  }
  
  @media only screen and (max-width: 500px) {
    .related_publications_container{
    margin-left:0;
    margin-top: 2rem;
    }
  }
  
  @media only screen and (max-width: 500px) {
    ul.next_button{
    margin-left:0;
    margin-top: 1rem;
    width: 100%;
    text-align: right;
    text-transform: capitalize
    }
  }
  
  @media only screen and (max-width: 500px) {
    .page_bottom_buttons{
    margin-left: auto;
    margin-top: 2rem;
    width: 100%;
    height: auto;
    }
  }
  
  @media only screen and (max-width: 500px) {
    .return_to_research_button{
    margin-left: auto;
    margin-top: 2rem;
    width: 90%;
    text-align: left;
    text-transform: capitalize;
    }
  }
  
  /* all media styles from subpage template */
  
  @media only screen and (max-width:1000px) {
    .page-id-5384 #affiliate-banner #r-title, .page-id-9085 #affiliate-banner #r-title {
    display: block;
    padding-top: 110px!important;
  }
  .page-id-5384 #affiliate-banner #affiliate-button, .page-id-9085 #affiliate-banner #affiliate-button {
    display: -webkit-inline-box;
  }
  .one-column {
    width: 48%}
  .half-column, .two-column {
    width: 98%;
    margin: 0 auto;
    text-align: left;
    float: none;
  }
  #large-input {
    width: 97%!important;
  }
  #signup-form-div, .page-id-5384 .half-column, .page-id-5384 .two-column, .page-id-9085 .half-column, .page-id-9085 .two-column {
    width: 48%;
    float: left;
  }
  .research-project-item {
    margin-left: 2%;
    width: 46%}
  .research-project-item .link-button {
    width: 100%}
  }
  
  
  
  @media only screen and (max-width:850px) {
    #affiliate-vision-section h2 {
    text-align: left;
  }
  .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_length {
    width: 100%;
    text-align: left;
  }
  .dataTables_wrapper .dataTables_filter input[type=search] {
    width: 85%;
    text-align: center;
    margin: 0 auto 0 5px;
  }
  }
  
  
  
  @media only screen and (max-width:650px) {
    .vr-signup-form label {
    color: #7c7c7c;
  }
  .page-id-5384 .content-area, .page-id-9085 .content-area {
    padding: 5px 2%}
  .page-id-5384 .research-project-item, .page-id-9085 .research-project-item {
    min-height: 0;
    padding-bottom: 0;
  }
  .bene img {
    margin-bottom: 0;
  }
  #affiliate-benefits h2 {
    text-align: left;
  }
  #affiliate-banner #r-title, #r-title, .research-area-title {
    position: static;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 3px;
    background-color: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
  #signup-form-div {
    padding-top: 0;
  }
  .research-area-banner {
    padding: 15px 0;
    margin-bottom: 0;
    margin-top: 0;
    z-index: 0;
    border-bottom: 8px solid #404040;
    width: 100%;
    height: auto;
    background: #404040;
  }
  .page-id-5384 #affiliate-banner, .page-id-9085 #affiliate-banner {
    border-bottom: 0;
    padding: 30px 0;
  }
  .page-id-4646 .research-area-banner, .page-id-4648 .research-area-banner, .page-id-4650 .research-area-banner, .page-id-4652 .research-area-banner, .page-id-5023 .research-area-banner {
    background: #404040;
  }
  .page-id-5384 .research-area-title, .page-id-9085 .research-area-title {
    padding: 0 6%;
    line-height: 34px!important;
    display: inherit;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    font-size: 17px!important;
  }
  .half-column, .one-column, .two-column {
    width: 94%;
    margin: 0 auto 30px;
    float: none;
  }
  #large-input, #signup-form-div, .page-id-5384 .half-column, .page-id-5384 .two-column, .page-id-9085 .half-column, .page-id-9085 .two-column, .vr-signup-form .one-column {
    width: 98%!important;
    float: none;
    margin-bottom: 0;
  }
  .vr-signup-form #field-submit {
    width: 98%;
    margin: 0 1%}
  #affiliate-benefits hr, .page-id-5384 #affiliate-benefits h2, .page-id-9085 #affiliate-benefits h2 {
    margin-left: 3%;
    margin-right: 3%}
  #affiliate-benefits hr {
    margin-bottom: 15px;
  }
  .page-id-5384 .research-project-item, .page-id-9085 .research-project-item {
    width: 94%!important;
    margin: 0 auto;
  }
  .page-id-5384 #affiliate-banner #r-title, .page-id-9085 #affiliate-banner #r-title {
    padding-top: 25px!important;
  }
  }
  
  
  @media only screen and (max-width:1000px){
  .page-template-info-password-protect #schedule-info .one-column {display: none;}
  
  .page-template-info-password-protect .site-content  {
    
      padding-top:  45px;
    }
  
      #affiliate-button{     display:  block;
    
  }
  }
  
  
  
  
  @media only screen and (max-width:1000px) {
  .one-fourth-column {
    width: 31%;
    float: left;
  }
  
  }
  
  
  
  @media only screen and (max-width:650px) {
  .one-fourth-column {
    width: 98%;
    float: none;
  }
  .people-2019-boxes img {
  margin: 0 auto;
    width: 48%;
    height: auto;
    display: block;
  }
  }
  
  @media only screen and (max-width:1100px) {
    .mega-drop-down .view-all-links{
        font-size:12px
  }
  }
  
  
  
  /* For Mobile: Max Width: 500px */
  
  @media only screen and (max-width: 500px) {
    p {
      margin:0;
      font-family: Lato;
    }
  }
  
  
  @media only screen and (max-width: 500px) {
    .project_title:after {
      content: ""; /* This is necessary for the pseudo element to work. */ 
      display: none; /* This will put the pseudo element on its own line. */
      margin: 0 auto; /* This will center the border. */
      width: 1rem; /* Change this to whatever width you want. */
      padding-top: 20px; /* This creates some space between the element and the border. */
      border-bottom: .5 px solid #000000; /* This creates the border. Replace black with whatever color you want. */
    }
  }
  
  @media only screen and (max-width: 500px) {
    .author_section:after {
      display: none;
    }
  }
  
  
  @media only screen and (max-width: 500px) {
    .route_header {
        margin-top: 2rem;
        margin-bottom: 2rem;
        display: block;
        float: left;
        clear: left;
        margin-right: 0;
        margin-left: 0;
        width: fit-content;
    }
  }
  
  @media only screen and (max-width: 500px) {
    .route_home{
        color: #383838;
        font-family: 'lato';
        font-size: 0.6rem;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        letter-spacing: 0.04375rem;
        text-transform: uppercase;
        text-align: center;
        padding: 0;
        overflow: hidden;
        border-left-width: 0.px;
  }
  }
  @media only screen and (max-width: 500px) {
    .bc_slash{
        color: #383838;
        font-family: 'lato';
        font-size: 0.6rem;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        letter-spacing: 0.04375rem;
        text-transform: uppercase;
        text-align: center;
        overflow: hidden;
        border-left-width: 0.px;
        margin-left: 0.1rem;
        margin-right: 0.1rem;
  }
  }
  
  @media only screen and (max-width: 500px) {
    .route_item1 {
      font-size: 0.6rem;
    }
  }
  
  @media only screen and (max-width: 500px) {
    .route_item2 {
      font-size: 0.6rem;
    }
  }
  
  @media only screen and (max-width: 500px) {
    .title_section {
        color: #000000;
        border-left: none;
        border-right: none;
        display: block;
        float: left;
        clear: left;
        margin-top: 0;
        text-align: left;
        height: fit-content;
        width: 120%;
        margin-left: -20px;
        margin-right: -20px;
        padding: 0;
    }
  }
  
  @media only screen and (max-width: 500px) {
    .title_section:after {
        content: "";
        display: block;
        float: left;
        clear: left;
        margin: 0 auto;
        width: 2rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
        border-bottom: 3px dotted #8f0098;
        margin-left: 20px;
    }
  }
  
  
  
  @media only screen and (max-width: 500px) {
    .project_title {
        font-family: lato;
        color: #28002f;
        border-left: none;
        border-right: none;
        padding: 0;
        display: block;
        float: left;
        clear: left;
        margin-left: 20px;
        margin-right: 0;
        width: 22rem;
        height: auto;
        text-align: left;
        margin-bottom: 0.4rem;
        margin-top: 0rem !important;
        width: 99%;
        font-size: 2.8rem !important;
        font-weight: 600 !important;
    }
  }
  
  
  @media only screen and (max-width: 500px) {
    .author_section {
        color: #000000;
        border-left: none;
        border-right: none;
        padding-right: 4rem;
        padding-left: 4rem;
        display: block;
        float: left;
        clear: left;
        margin-top: 0;
        padding: 0;
        text-align: left;
    }
  }
  
  
  
  @media only screen and (max-width: 500px) {
    .author {
      font-size: 1rem;
      
    }
  }
  
  @media only screen and (max-width: 500px) {
    .collaboration {
        font-size: 1rem;
        font-family: 'lato';
        margin-top: 0.66rem;
        margin-bottom: 0.66rem;
        margin-left: 0;
        margin-right: 0;
    }
  }
  
  
  @media only screen and (max-width: 500px) {
    .summary_title {
        margin-top: 4rem;
        display: block;
        float: left;
        clear: left;
        font-size: 1.5rem;fs
        font-family: 'lato';   
    }
  }
  
  
  @media only screen and (max-width: 500px) {
    .summary {
        text-align: left;
        font-size: 1.2rem;
        display: block;
        float: left;
        font-family: lato;
        font-weight: 200;
    }
  }
  
  @media only screen and (max-width: 500px) {
    .figure_caption {
        font-size: 1rem;
        font-family: 'lato';
        width: auto;
        margin-top: 0;
        margin-bottom: 4rem;
        line-height: 1rem;
        display: block;
        float: left;
        clear: left;
        text-align: center;
        line-height: 1.6rem;
    }
  }
  @media only screen and (max-width: 500px) {
  .figure_caption:after{
    display: none;
  }
  }
  
  @media only screen and (max-width: 500px) {
    .related_publications_title {
        font-size: 1.5rem;
        width: auto;
        text-align: left;
        margin-top: 5px;
        color: #000000;
        font-family: 'Lato';
    }
  }
  
  @media only screen and (max-width: 500px) {
    .publication_title {
        width: auto;
        text-align: left;
        color: #0042EB;
        font-size: 16px;
        line-height: normal;
        font-weight: 500;
        font-family: 'Lato';
        text-decoration: none;
  }
  }
  
  @media only screen and (max-width: 500px) {
    .publication_authors {
      display: none;
  }
  }
  
    @media only screen and (max-width: 500px) {
    .publication_journal {
        font-size: .8rem;
        width: auto;
        text-align: left;
        margin-top: 0.2rem;
        font-weight: 400;
        font-family: 'Lato';
  }
  }
  
    @media only screen and (max-width: 500px) {
    .return_button {
        width: 80%;
        height: 5rem;
        border: 2px solid #1677A0;
        background: #FFF;
        display: block;
        margin-right: auto;
        margin-left: auto;
        margin-top: 4rem;
        color: #1677A0;
        font-family: lato;
        font-size: .8rem;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.03125rem;
        text-transform: uppercase;
        padding: 0;
        border-radius: 4px;
        -webkit-appearance: none;
        cursor: pointer;
        font-family: 'Lato';
    }
  }
  
  @media only screen and (max-width: 500px) {
    .researchers_container:before {
        content: "";
        display: block;
        float: none;
        clear: left;
        margin: 0 auto;
        margin-top: 0rem;
        margin-bottom: 1rem;
        border-bottom: 1px solid #000000;
        margin-left: auto;
        margin-right: auto;
    }
    }
    
    @media only screen and (max-width: 500px) {
    .researchers_container:after {
        content: "";
        display: none;
        float: none;
        clear: left;
        margin: 0 auto;
        margin-top: 1rem;
        border-bottom: 1px solid #000000;
        margin-left: auto;
        margin-right: auto;
    }
    }
  
  
    /* Lato fonts (replace this once gotham is hosted on Mobile as well) */
  
    @media only screen and (max-width: 500px) {
      h1.project_title {
          font-family: 'lato'
      }
  
      .pis_header{
          font-family: 'lato'
      }
  
      .collaborators_header{
          font-family: 'lato'
      }
  
      .summary_title{
          font-family: 'lato' !important
      }
  
      .summary{
          font-family: 'lato'
      }
    }