/*
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
*/

p {
	margin-bottom: 25px;
}

.zbump {
	position: relative;
	z-index: 99999;
}

.focus-callout .fl-callout {
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	transition: all .5s ease;
}

.focus-callout .fl-callout img {
	-webkit-filter: brightness(95%);
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	transition: all .5s ease;

}

.focus-callout .fl-callout:hover img,
.focus-callout .fl-callout:focus img {
	-webkit-filter: brightness(110%);
}

.focus-callout .fl-callout a {
	color: #ffffff;
}

.focus-callout .fl-callout:hover a,
.focus-callout .fl-callout:focus a {
	color: #b6e0c9;
}

/* Nav */

#menu-main-nav li a {
    position: relative;
    display: inline-block;
}

#menu-main-nav li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px; /* Increase the left position by 20px */
    right: 20px; /* Add a right position of 20px */
    width: 0;
    height: 4px;
    background-color: #f5be1a;
    transition: width 0.3s ease-in-out;
}

#menu-main-nav li a:hover::after,
#menu-main-nav li a:focus::after,
#menu-main-nav li.current-menu-item a::after {
    width: calc(100% - 40px); /* Reduce the width by 40px (20px on each side) */
}


@media screen and (max-width: 768px) {
    #menu-main-nav li a::after {
        left: 10px;
        height: 3px;
    }
}

/* Slider */

.slider-photo img {
	border-radius: 5px !important;
	box-shadow: 0px 3px 7px 0px rgba(0,0,0,0.12) !important;
}

/* Footer */

.focus-footer,
.focus-footer p {
	color: #333;
}

/*Line */

.div-line {
    border-top-width: 4px;
    border-top-style: solid;
    border-top-color: #f5be1a;
    max-width: 50px;
    margin: 10px auto 20px;
}

/* Paragraph Link Underline */
.fl-builder p a {
  text-decoration: none;
	border-bottom: 2px solid #f5be1a;
}

.focus-header p a,
.focus-footer p a {
	border-bottom: none;
}

/* Home Callouts */

.aa-callout .fl-callout-text-wrap {
	padding: 0 10px;
}