/*
 Theme Name:   Digiphore Divi Theme
 Theme URI:    https://digiphore.com
 Description:  Digiphore Child Theme for Divi
 Author:       Simon Hayes
 Author URI:   https://digiphore.com
 Template:     Divi
 Version:      2.0.0
*/

/*****Add any custom CSS below this line*****/

/* CONTENTS

1. TYPOGRAPHY
2. GENERAL STYLING - used to override base styles from Divi
3. HELPER CLASSES - generic helper classes to resize etc
4. CUSTOM ELEMENTS - specific classes to style customised Divi elements
5. SECTIONS - layout and colour overrides for SECTIONS
 */

 /* ------ 1. TYPOGRAPHY -------- */

 /* ------ 2. GENERAL STYLING --- */

 /* ------ 3. HELPER CLASSES ---- */

 /* ------ 4. CUSTOM ELEMENTS --- */

 /* ------ 5. SECTIONS ---------- */


/* Large screens (1405px upwards) */
@media only screen and ( min-width: 1405px ) {
    /* your css goes here */
}

/* Laptops and desktops (1100-1405px) */
@media only screen and ( min-width: 1100px ) and ( max-width: 1405px) {
    /* your css goes here */
}

/* Tablets in landscape mode (981-1100px) */
@media only screen and ( min-width: 981px ) and ( max-width: 1100px ) {
	/* your css goes here */
}

/* Tablets in portrait mode (768-980px) */
@media only screen and ( min-width: 768px ) and ( max-width: 980px ) {
    /* your css goes here */
}

/* Smartphones in landscape mode (480-768px) */
@media only screen and ( min-width: 480px ) and ( max-width: 767px ) {
    /* your css goes here */
}

/* Smartphones in portrait mode (0-479px) */
@media only screen and ( max-width: 479px ) {
    /* your css goes here */
}
