/* Add here all your CSS customizations */

/**Desktop Query*/
@media only screen and (min-width: 768px) {    
    
}

/*Tablet Query*/
@media only screen and (min-width: 481px) and (max-width: 768px) {
    .c-btn{
        font-size: 10px !important;
    }
}

/*Mobile Query*/
@media only screen and (max-width: 480px) {
    .c-btn{
        font-size: 10px !important;
    }
}