 /* Add a black background color to the top navigation */
 .topnav {
    background-color: #333;
    overflow: hidden;
;
}
  
  /* Style the links inside the navigation bar */
  .topnav a {
    float: right;
    display: block;
    color: #fFfFfF;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  
  /* Change the color of links on hover */
  .topnav a:hover {
    background-color: #ddd;
    color: black;
  }
  
  /* Add an active class to highlight the current page */
  .topnav a.active {
    background-color: #910100;
    color: white;
  }
  
  /* Hide the link that should open and close the topnav on small screens */
  .topnav .icon {
    display: none;
  } 
   /* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 900px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: left;
    display: inline-block;
  }
}

@media screen and (max-width: 900px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}
@media screen and (min-width: 900px){
div.topnav{
display:none;
}
}
@media screen and (max-width: 900px){

div#subscribe{
background:transparent;
}
.subscribe-block a,p{
display:none;
}
.linkmain a {
display:none;}
.linkmain1 a{
display:none;}
div.topnav{
margin-left: 20px;
padding 0;
float right;
width:100%;}
div.row{
margin-left: 20px;
}
}