#advisor-modal {
    border: #282c34 5px solid;
    border-radius: 5px;
    color: lightslategray;
    font-weight: bold;
    position: fixed;
    overflow-y: scroll;
    /* bottom: 15%; */
    height: 90%;
    width: 90%;
    background-color: white;
  }
  
  .advisor-close-row {
    align-items: center;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 20px;
    color: white;
    width:100%;
    height: 100px;
    min-height: 50px;
    background-color: #282c34;
    z-index: 3;
    position: sticky;
  }
  
  .column-l {
    width: 10%;
    height: 100%;
    /* background-color: #60ff9d; */
    float: left;
  }
  
  .column-m {
    width: 80%;
    height: 100%;
    font-size: xx-large;
    font-family: Arial, Helvetica, sans-serif;
    float: left;
    justify-content: center;
    display: flex;
    align-items: center;
  }
  
  .column-r {
    width: 10%;
    height: 100%;
    /* background-color: #60ff9d; */
    float: left;
    justify-content: center;
    display: flex;
    align-items: center;
    color: white;
    font-size: 28px;
    text-align: center;
    padding: auto;
  
  }
  
  .modal-close-button {
    margin: 0;
    color: white;
    border: lightblue 1px solid;
    width: fit-content;
    padding: 4px;
    border-radius: 5px;
    font-size: small;
    /* display: inline; */
    /* float: right; */
  }
  
  .advisor-row {
    height: 200px;
    border-bottom: 1px solid lightgray;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  .advisor-row:nth-child(even) {
    background-color: rgb(241, 240, 240);
    /* border: none; */
  }
  
  .advisor-image-container {
    width: 12%;
    float: left;
    height: inherit;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .advisor-image {
    width: 85%;
    max-width: 180px;
    margin: 10px 10px 10px 10px;
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 3/3;
    border: solid 2px #63686c;
    color: black;
  
  }
  
  .on-advisor-image-error {
    width: auto;
    border-radius: 0;
    border: none;
    height: 100%;
  }
  
  .advisor-contact-details-container {
    float: left;
    width: 28%;
    height: inherit;
  
    /* display: flex;
    justify-content: center; */
  }
  
  ul.advisor-ul {
    list-style: none;
    padding: 0;
    margin-left: 20px;
  }
  
  li {
    margin: 10px;
  }
  
  .advisor-bio-container {
    float: left;
    width: 58%;
    height: inherit;
  }
  
  .advisor-bio-h {
    margin-left: 10px;
  }
  
  .bio-para {
    /* margin:10px 0 0 0; */
    padding: 10px;
    overflow-y: scroll;
    height: 65%;
    line-height: 30px;
    /* background-color: white; */
    border: 1px solid lightgray;
    border-radius: 5px;
  }
  
  .about-close-row {
    display: flex;
    /*flex-direction: row;*/
    justify-content: center;
    align-items: center;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 20px;
    color: white;
    height: 100px;
    min-height: 50px;
    margin-bottom: 5%;
    background-color: #282c34;
    z-index: 3;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
  }
  
  .about-modal {
    /* text-align: center; */
    border: #282c34 1px solid;
    border-radius: 5px;
    position: absolute;
    background-color: #fefefe;
    opacity: 1;
    width: 90%;
    height: 90%;
    padding: 20px;
    overflow-y: scroll;
  }
  
  .about-modal-p {
    background-color: #fefefe;
    line-height: 30px;
    color: lightslategray;
    position: absolute;
    top: 100px;
    height: 100%;
    padding: 5px;
  
  }

  @media(max-width: 600px){
    .column-l{
      width:15%;
    }
    .column-m {
      width:70%
    }
    .column-r {
      width:15%;
    }
  }

  @media(max-width: 870px) {

    #advisor-modal {
      width: 100%;
      border-radius: 0;
      height: 100%;
      overflow-y: none;
    }
  
    .advisor-row {
      height: auto;
    }
  
    .advisor-image-container,
    .advisor-contact-details-container {
      float: none;
      width: 100%;
      height: auto;
    }
  
  
    ul.advisor-ul {
      list-style: none;
      padding: 0;
      margin-left: 10px;
    }
  
    .advisor-image-container {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }
  
    .advisor-image {
      width: 25%;
      margin-left: auto;
      margin-right: auto;
    }
  
    .bio-para {
      width: 90%;
      /* border: none; */
      margin-left: auto;
      margin-right: auto;
  
    }
  
    .advisor-bio-container {
      margin-left: 0;
      margin-right: 0;
      float: none;
      width: 100%;
    }
  
    .advisor-bio-h {
      margin-left: 20px;
    }  
  
  }