@charset "utf-8";
/* CSS Document */

.topnav {
    overflow: hidden;
    background-color: #069;
    background-color: #3975AD;
    background-color: #1C242F;
    background-color: #25383D;

    display: flex;
    justify-content: space-around;
  }
  
  .topnav a {
    
    color: #f2f2f2;
    text-align: center;
    padding: 17px 16px;
    text-decoration: none;
  }

  .topnav a, .dropdown .dropbtn 
  {
    font-size: 14px;
    padding: 12px 16px;

  }
  
  .material-icons-round
{
    font-size: 25px;
    vertical-align:middle;
    padding-right: 5px;
}

.topnav .material-icons-round 
{
    font-size: 30px;
    
}
  .icon {
    display: none;
  }
  
  .dropdown {
    float: left;
    overflow: hidden;
  }
  
  .dropdown .dropbtn  
  {
    border: none;
    outline: none;
    color: white;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    cursor: pointer;
  }

  .dropdown-content 
  {
    display: none;
    position: absolute;
    background-color: #124466;
    background-color: #242F47;
  
    
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a 
  {
    float: none;
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .topnav a:hover, .dropdown:hover .dropbtn,  .dropdown-content a:hover
  {
    background-color: #005273;
    background-color: #1B768E;
    color:#fff;
  }
  
  /* .dropdown-content a:hover {

    background-color: #005273;
    color:#fff;
  }*/
  
  .dropdown:hover .dropdown-content 
  {
    display: block;
  }

  .mobile-menu 
  {
    display: none;
  }

  .pc-menu 
  {
    color:#fff;
  }
  

  
  @media screen and (max-width: 780px) 
  { 
    .topnav a, .dropdown .dropbtn 
    {
      display: none;
    }

    .icon 
    {
        display: block;
        font-size: 30px;
        color: #fff;
      }

    #pc-menu 
    {
      display: none;
    }

    /*.topnav.responsive 
    {
        position: relative;
    }*/
    
    .topnav.responsive 
    {
        flex-direction: column;
    }

    /*.topnav.responsive .icon 
    {
      position: absolute;
      right: 0;
      top: 0;
    }*/

    .topnav.responsive a 
    {
      /*float: none;*/
      display: block;
      text-align: left;
    }

    .topnav.responsive .dropdown 
    {
        float: none;
    }
    
    .topnav.responsive .dropdown-content 
    {
        position: relative;
    }

    .topnav.responsive .dropdown .dropbtn 
    {
      display: block;
      width: 100%;
      text-align: left;
    }
    .dropdown-content a 
    {
      padding-left: 28px;
    }
  }