/*==================================================
=            Bootstrap 3 Media Queries             =
==================================================*/

@media(max-width:767px){}
@media(min-width:768px){}
@media(min-width:992px){}
/* Large Devices, Over 1200 */
@media(min-width:1200px){
    .row-eq-height {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display:         flex;
    }}
/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
    .row-eq-height {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display:         flex;
    }
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
    .row-eq-height {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display:         flex;
    }
}

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


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


}

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

}

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

}


.no-padding-bottom {padding-bottom: 0!important;}
.no-margin-bottom {margin-bottom: 0!important;}
.padding-left-20 {padding-left: 20px!important;}

