.n-n{
    background-color: #54b435;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;

}
.n-n>p{
    color: white;
    font-size: 2rem;
    font-weight: bold;
    padding: 1rem 0;
}

/* director masseage :start */
.direct{
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}
.contentsx p{
  font-size: 1.4rem;
  line-height: 2rem;
}

/* media quary */
@media screen and (max-width: 600px) {
  .direct{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
    padding: 1rem 3rem;
  }
  .contentsx p{
    font-size: 1.8rem;
    line-height: 3rem;
    text-align: justify;
  }
}
/* director masseage :end */

/* mbbs section :start */
.mbbs{
  display: flex;
  gap: 3rem;
}
.mbbs-content p{
  font-size: 1.8rem;
  line-height: 3.5rem;
}
/* media quary */
@media screen and (max-width: 600px) {
  .mbbs{
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 1rem 3rem;
  }
  .mbbs-img img{
    width: 45rem;
  }
  .mbbs-content p{
    font-size: 2rem;
    line-height: 3.5rem;
    margin-left: 5rem;
  }
}
/* mbbs section :end */

table {
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    table-layout: fixed;
  }
  
  table caption {
    font-size: 1.5em;
    margin: .5em 0 .75em;
  }
  
  table tr {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    padding: .35em;
  }
  
  table th,
  table td {
    padding: 0.625em;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 400;
  }
  
  table th {
    font-size: 2rem;
    letter-spacing: .1em;
    text-transform: uppercase;
  }
  
  @media screen and (max-width: 600px) {
    table {
      border: 0;
      margin-top: 10rem;
    }
  
    table caption {
      font-size: 1.3em;
    }
    
    table thead {
      border: none;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px;
    }
    
    table tr {
      border-bottom: 3px solid #ddd;
      display: block;
      margin-bottom: .625em;
    }
    
    table td {
      border-bottom: 1px solid #ddd;
      display: block;
      font-size: 2rem;
      text-align: right;
    }
    
    table td::before {
      content: attr(data-label);
      float: left;
      font-weight: bold;
      text-transform: uppercase;
    }
    
    table td:last-child {
      border-bottom: 0;
    }
  }

  /* schloarship section :start */
  @media screen and (max-width: 600px) {
    .content img{
      width: 47rem;
    }
  }

  #field{
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    color: black;
  }
