/* ============================================= */
/* GENERAL */
/* ============================================= */

/* Tablet styles: 600px – 1200px */
@media (min-width: 600px) and (max-width: 1200px) {
    
}

/* Tablet styles: 1200px – 1400px */
@media (min-width: 1200px) and (max-width: 1400px) {
    
}

/* Screens styles bigger than 1900px */
@media (min-width: 1900px) {
    
}

/* Mobile styles: up to 700px */
@media only screen and (max-width: 700px) {

    /* General */

    html,
    body {
        overscroll-behavior: none !important;
    }
}