/*==========  Non-Mobile First Method  ==========*/

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

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
    .a-section-1 .box .box-text .button span{
        font-size: 11px;
    }
    .a-section-1 .box .box-text .button{
        margin-bottom: 10px;
    }
}

@media only screen and (max-width : 850px) {
    .a-section-1 .box .box-text .button span{
        font-size: 14px;
    }
    .a-section-1 .box .box-text .button{
        margin-bottom: 18px;
        padding: 5px 24px;
    }
}

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

}

@media only screen and (max-width : 600px) {
    .a-section-1 .box .box-text .button span{
        font-size: 12px;
    }
    .a-section-1 .box .box-text .button{
        margin-bottom: 15px;
        padding: 3px 20px;
    }
}

@media only screen and (max-width : 550px) {
    .a-section-1 .box .box-text .button span{
        font-size: 12px;
    }
    .a-section-1 .box .box-text .button{
        margin-bottom: 18px;
        padding: 5px 25px;
    }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 460px) {
    .a-section-1 .box .box-text .button span{
        font-size: 12px;
    }
    .a-section-1 .box .box-text .button{
        margin-bottom: 12px;
        padding: 3px 20px;
    }
}

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

}

/* Custom, iPhone Retina */