
/*responsive*/
/* Normal desktop :992px. */
@media (min-width: 992px) and (max-width: 1169px) {

}

/* Tablet desktop :768px. */
@media (min-width: 768px) and (max-width: 991px) {


}

/* small mobile :320px. */
@media (max-width: 575px) {
 
}

@media (max-width: 767px) {
    h1 {
        font-size: 1.75rem
    }
    h2 {
        font-size: 1.5rem
    }
    h3 {
        font-size: 1.25rem
    }
    h4 {
        font-size: 1.125rem
    }
   
}

/* Large Mobile :480px. */
@media only screen and (min-width: 480px) and (max-width: 767px) {

}

/*max 991*/
@media (max-width: 991px) {

}