@charset "utf-8";
@media screen and (max-width: 767px){
  *{
    margin: 0;
    padding: 0;
  }
  .sp{
    display: block;
  }
  .pc{
    display: none;
  } 
  img{
    display: block;
    width: 100%;
    height: auto;
  }
  header{
    background-color:#fff;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
  #logo{
    width: 50vw;
    margin-top: 25px; 
    margin-left: 1%; 
    float: left;
  }
  #menu{
    position: relative;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 10000;
    float: right;
    margin-top: 15px;
    margin-right: 2%;
  }
  #menu span{
    background-color: rgb(61, 60, 60);
    width: 40px;
    height: 3px;
    display: block;
    position: absolute;
    left: 5px;
    transition:0.5s;
  }
  #menu span:nth-child(1){
    top: 10px;
  }
  #menu span:nth-child(2){
    top: 24px;
  }
  #menu span:nth-child(3){
    top: 38px;
  }
  .open #menu span:nth-child(1){
    top: 24px;
    transform: rotate(45deg);
  }
  .open #menu span:nth-child(2){
    opacity: 0;
  }
  .open #menu span:nth-child(3){
    top: 24px;
    transform: rotate(-45deg);
  }
  #menu-list{
    width: 100%;
    height: 50vh;
    background: #4a4c5a;
    position: fixed;
    top: 0;
    left: 0;
    transform: translateY(-100vh);
    transition: 0.5s;
    z-index: 1000;
  }
  .open #menu-list{
    transform: translateY(0);
  }
  #menu-list ul{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 15px;
    width: 100%;
    height: 100%;
  }
  #menu-list ul li{
    margin-bottom: 5px;
  }
  #menu-list li{
    margin: 0 10px;
  }
  #menu-list li a{
    display: block;
    padding: 10px 5px;
    color: #fff;
    text-decoration: none;
  }
#services h2,#aboutus h2,#access h2,#mainNews h2,#publications h2{
  text-align: center;
  color: black;
  font-size: 18px;
  margin-bottom: 20px;
}
.h2_style1{
  display: block;
  margin-top: 10px;
  margin-left: 0;
  letter-spacing: 1px;
  font-size: 12px;
  color:#64879f;
  font-family: 'Roboto', sans-serif;
}
footer{
    margin-top: 10px;
    padding: 40px 0;
    background: #4a4c5a;
    clear: both;
  }
#spprivacy a{
    color: #fff;
    font-size: 10px;
  }
#spprivacy{
  text-align: left;
  margin-left: 10px;
}
footer p{
    text-align: center;
    color: #fff;
    font-size: 10px;
  }
  }