/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

    
}



@media only screen and (max-width: 1361px){
    .topnav a {
        padding: 20px 35px;
    }
    
    .navlogo {
        width: 80%;
    }
}

@media only screen and (max-width: 1280px){
    .topnav a {
        padding: 20px 32px;
    }
    
    .navlogo {
        width: 80%;
    }
}

@media only screen and (max-width: 1230px){
    .topnav a {
        padding: 20px 30px;
    }
    
    .navlogo {
        width: 80%;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (max-width: 1202px) {
    
   .navlogo {
        width: 80%;
    }
    
    .topnav a {
        padding: 20px 25px;
    }
} 

@media only screen and (max-width: 1139px){
    .topnav a {
        padding: 20px 20px;
    }
}

@media only screen and (max-width: 1077px){
    .topnav a {
        padding: 20px 16px;
    }
}

@media only screen and (max-width: 1026px){
    .topnav a {
        padding: 20px 13px;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 991px) {
    
    .navlogo {
        width: 60%;
        padding: 0 0;
    }
    
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
  
    .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
} 



/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (max-width: 767px) {
    
    .navlogo {
        width: 60%;
    } 
    
    .poster {
        width: 50%;
    }
     
}



/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 599px) {
    
    .navlogo {
        width: 70%;
    }
}

