/*
Theme Name: Beaver Builder Child Theme
Theme URI: http://www.wpbeaverbuilder.com
Version: 1.0
Description: An example child theme that can be used as a starting point for custom development.
Author: The Beaver Builder Team
Author URI: http://www.fastlinemedia.com
template: bb-theme
*/

/* Add your custom styles here... */ 

/* Apply text-wrap: balance to headings and short text */
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

p {
  text-wrap: balance;
}

.image-drop-shadow {
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.2));
}

.secondary-cta span {
  text-decoration: none; /* Ensure no default underline if it's a link */
  transition: text-decoration 0.3s ease; /* Apply transition here */
}

.secondary-cta:hover span {
  text-decoration: underline;
}

.nf-form-fields-required {
    display: none;
}

/* Removing active line from FAQ items */
.uabb-faq-question-label:focus, .uabb-faq-question-label:active, .uabb-faq-questions-button:focus, .uabb-faq-questions-button:active, .uabb-faq-icon-wrap:focus, .uabb-faq-icon-wrap:active {
    outline: none;
}