/* Large desktops and laptops */
@media (min-width: 1200px) {
    
}

/* Portrait tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
    
}

/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {
    
}

/* Landscape phones and portrait tablets */
@media (max-width: 767px) {
        
}

/* Landscape phones and smaller */
@media (max-width: 480px) {
    .header {
        margin-bottom: 20px;
    }
    .navbar-header {
        background-color: #f2f2f2;
    }
    .logo {
        background: none;    
    }
    .logo1 {
        width: 100%;
        text-align: center;
    }
    .logo1 p {    
        width: 100%;    
        letter-spacing: 20px;
        padding: 0px;
    }
    .logo2 {
        width: 100%;
        text-align: center;
    }
    .logo2 p {    
        width: 100%;    
        letter-spacing: 20px;
        padding: 0px;
    }
}

/* Custom, iPhone Retina */ 
@media only screen and (min-width : 320px) {
		
}