/*
Theme Name: Divi child theme
Template: Divi
*/
@import url("../Divi/style.css");


/* Large screens (1405px upwards) */
@media only screen and ( min-width: 1405px ) { 
	.phonenumber, .menu-button { display: none!important; }
}

/* Laptops and desktops (1100-1405px) */
@media only screen and ( min-width: 1100px ) and ( max-width: 1405px) { 
   .phonenumber, .menu-button { display: none!important; }
}

/* Tablets in landscape mode (981-1100px) */
@media only screen and ( min-width: 981px ) and ( max-width: 1100px ) { 
    .phonenumber, .menu-button { display: none!important; }
}

/* Tablets in portrait mode (768-980px) */
@media only screen and ( min-width: 768px ) and ( max-width: 980px ) {
   .phonenumber, .menu-button { display: none!important; }
}

/* Smartphones in landscape mode (480-768px) */
@media only screen and ( min-width: 480px ) and ( max-width: 767px ) {
   .phonenumber a { color: #009fe3!important; }
   .fa-phone:before { padding-right: 5px; }
   .menu-button a {
        width: 100% !important;
        text-align: center;
        color: #fff !important;
    }
	.menu-button a:hover {
        background-color: #e67900!important;
    }
}

/* Smartphones in portrait mode (0-479px) */
@media only screen and ( max-width: 479px ) {
	.phonenumber a { color: #009fe3!important; }
	.fa-phone:before { padding-right: 5px; }
	.menu-button a {
        width: 100% !important;
        text-align: center;
        color: #fff !important;
    }
	.menu-button a:hover {
        background-color: #e67900!important;
    }
}