/*==================================================
=            Bootstrap 3 Media Queries             =
==================================================*/
 
 
/*==========  Mobile First Method  ==========*/
 
/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {
}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
}


/*==========  Non-Mobile First Method  ==========*/
 
/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
    .pricing-table.style1 {
        height: 370px
    }
    #about .title {
        font-size: 35px!important
    }
    
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
    .navbar-brand {
        padding: 15px 0
    }
    #about .title {
        text-align: center
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 767px) {
    .navbar-header {
        max-width: inherit
}
    .navbar .navbar-brand img {
        width: 53%;
}
    .breadcrumb-holder .offer {
        font-size: 27px!important
    }
}
/* Extra Small Devices, Phones */
@media only screen and (max-width : 450px) {
    .navbar-default .navbar-brand {
        max-width: 75%
    }
    .navbar .navbar-brand img {
        width: 54%;
}
    .breadcrumb-holder .offer {
        font-size: 20px!important
    }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 360px) {

}

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