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

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a,
a:link,
a:visited,
a:hover,
a:focus,
button,
input:focus,
input[type="button"],
input[type="reset"],
input[type="submit"],
textarea:focus,
.button,
.gallery img,
a.fl-button {
    transition: all 0.25s ease-in-out !important;
}

.button,
a.fl-button,
input[type="button"],
input[type="submit"],
input[type="reset"],
button {
  background: linear-gradient(to right, #d2a857, #b3862e);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  color: #ffffff;
  font-weight: bold;
  font-size: 20px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease-in-out !important;
}

.button:hover,
a.fl-button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
button:hover {
  background: linear-gradient(to right, #ddb05c, #c2943b);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.mega-toggle-block button,
.mega-toggle-block button:hover {
  box-shadow: none;
}

p a {
	border-bottom: 1px solid #d0a554;
	padding-bottom: 3px;
	text-decoration: none;
}

p a:hover {
	border-bottom: 1px solid #a61c3f;
    color: #a61c3f;
	padding-bottom: 3px;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
}

p {
	margin-bottom: 25px;
}

ul, ol {
	margin-bottom: 30px;
}

.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;
}

/* --- Background Videos --- */

.bg-video-col {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Home Fit */
.bg-video-el {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 1;
  object-fit: cover;
  pointer-events: none;
}

/* Bio Contain */

.bg-video-bio {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: contain; /* Show full video */
  background-color: #fff; /* Fill any letterboxed space */
  z-index: 1;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .bg-video-el,
  .bg-video-bio {
    display: none !important;
  }
}


/* -- Focus Hero -- */

.home-hero .fl-row-content-wrap:after {
    background-image: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.90) 0px, rgba(13, 13, 13, .10) 200px),  /* Top gradient */
        linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(13, 13, 13, 0) 45%);       /* Bottom gradient */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


