/*
Theme Name: Inspiro Child
Theme URI: https://www.wpzoom.com/themes/inspiro
Template: inspiro
Description: This is a simple Child Theme.
Author: WPZOOM
Author URI: https://www.wpzoom.com
Version: 1.0
*/

/* Write your custom CSS code below or add it in the Customizer > Additional CSS */
.navbar {
  position: relative;
  z-index: 200;
  color: fff;
  background: rgba(0, 0, 0, 0);
  padding: 18px 0;
  transition: all 0.5s ease-in-out;
}
  .navbar-nav ul a {
    color: #ffffff;
    padding: 8px 20px 8px 15px;
    border-bottom: none;
    position: relative;
  }

/* ===== DEVICE VISIBILITY SYSTEM ===== */
/* Only show one device layout at a time */

/* Default: Show desktop, hide others */
.ihb-header-builder.ihb-desktop,
.ihb-topbar-wrap.ihb-desktop {
    display: block;
}

.ihb-header-builder.ihb-tablet,
.ihb-header-builder.ihb-mobile,
.ihb-topbar-wrap.ihb-tablet,
.ihb-topbar-wrap.ihb-mobile {
    display: none;
}

/* Tablet: 991px - 768px */
@media (max-width: 991px) and (min-width: 767px) {
    .ihb-header-builder.ihb-desktop,
    .ihb-header-builder.ihb-mobile,
    .ihb-topbar-wrap.ihb-desktop,
    .ihb-topbar-wrap.ihb-mobile {
        display: none;
    }
    
    .ihb-header-builder.ihb-tablet,
    .ihb-topbar-wrap.ihb-tablet {
        display: block;
    }
}

/* Mobile: 767px - 0px */
@media (max-width: 767px) {
    .ihb-header-builder.ihb-desktop,
    .ihb-header-builder.ihb-tablet,
    .ihb-topbar-wrap.ihb-desktop,
    .ihb-topbar-wrap.ihb-tablet {
        display: none;
    }
    
    .ihb-header-builder.ihb-mobile,
    .ihb-topbar-wrap.ihb-mobile {
        display: block;
    }
}
