/*Media Queries*/
@media (min-width: 1200px) {

}
@media only screen and (max-width: 1200px) {

}
/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
    header {
        padding: 20px 0;
    }
    .banner {
        height: 50px;
    }
    #slider .banner p{
        margin-top: 8px;
        font-size: 26px;
    }
}
@media (min-width: 768px) {
    #navigator .navbar-collapse{
        padding: 0;
    }
}
/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {
    header {
        border-top: 5px;
        padding: 15px 0;
    }
    header .headerimg img {
        max-width: 50px;
    }
    a.telephone {
        margin-top: 20px;
    }
    header .btn-vlg {
        margin-top: 15px;
    }
    .banner {
        height: 35px;
    }
    #slider .banner p{
        margin-top: 2px;
        font-size: 22px;
    }

    #customers .customer .text{
        height: auto;
    }
    #contact-us p{
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px) {
    #navigator{
        margin-bottom: 25px;
    }
    #navigator li {
        border-right: none;
        border-bottom: solid 1px #003A72;
    }
    #navigator li:last-child {
        border-bottom: none;
    }
    #navigator a{
        padding: 15px 25px;
    }
    #navigator .navbar-brand{
        padding: 5px;
    }
    footer {
        margin: 0;
        padding-top: 15px;
    }
    #navbar{
        margin: 0;
    }
    section{
        margin-top: 15px;
    }
    footer h3{
        display: none;
    }
    footer p{
        text-align: center;
    }
    #footer-bottom{
        display: none;
    }
    #areas{
        margin-top: 30px;
    }

    #customers .customer .text{
        height: auto;
    }

    img.right,
    img.left{
        float: none;
        width: 100%;
        margin: 15px 0;
    }
    .detail_image{
        display: none;
    }
}
/* Portrait phones and smaller */
@media (max-width: 480px) {

}

/*End Media Queries*/