/*
 * Theme Name: Roof Works
 * Template: astra
 * Version: 1.0.0
 * */

 /* =====================================
   Responsive Visibility Utilities
   ===================================== */

/* Hide on Mobile */
@media (max-width: 768px) {
.hide-mobile {
display: none !important;
}
}

/* Hide on Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
.hide-tablet {
display: none !important;
}
}

/* Hide on Desktop */
@media (min-width: 1025px) {
.hide-desktop {
display: none !important;
}
}

/* Mobile only */
.show-mobile {
display:none;
}

@media (max-width:768px){
.show-mobile{
display:block;
}
}