/*==========  Non-Mobile First Method  ==========*/

@media screen and (min-width: 850px) {
    .large-2 {
        flex-basis: 12.5%;
        max-width: 12.5%;
    }
}

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 550px) {
    .text-1 {
        font-size: 22px;
        line-height: 27px;
    }
    .text-2 {
        font-size: 40px;
        line-height: 56px;
    }
}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

}
