/*
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 {
	color: #231f20;
	font-family: gotham-narrow, sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	letter-spacing: 0em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1 {
  font-family: gotham, sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 52px;
  letter-spacing: 0.025em;
  margin-top: 0;
  text-transform: uppercase;
}

h2 {
  font-family: gotham, sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0em;
  margin-top: 0;
}

h3 {
  font-family: gotham, sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  letter-spacing: 0em;
  margin-top: 0;
}

h4 {
  font-family: gotham, sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 30px;
  letter-spacing: 0em;
  margin-top: 0;
}

h5 {
  font-family: gotham-narrow, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0;
}

h6 {
  font-family: gotham-narrow, sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0em;
  margin-top: 0;
}

h3.narrow {
	  font-family: gotham-narrow, sans-serif;
}

.p-large {
  font-family: gotham-narrow, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0em;
}

p, .p-default {
  font-family: gotham-narrow, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0em;
}

.p-small {
  font-family: gotham-narrow, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0em;
}

strong,
.fl-builder-content .fl-rich-text strong {
	font-weight: 500;
}

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

a.no-underline {
	text-decoration: none;
}

a.no-underline:hover {
	text-decoration: underline;
}

p, ul {
	margin-bottom: 20px;
}

ul {
	padding-inline-start: 20px;
}

ul > li {
	margin-bottom: 7px;
}

ul li::marker {
  color: #777;
}

hr {
    border-top: 3px solid #ccc;
}

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


/* ----- Cards ------ */

.cards {
  display: grid;
  gap: 40px;
}

.card {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 0;
  background: none;
}

.card > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.card-topper {
  display: block;
  background: var(--accent, #777);
  color: #fff;
  padding: 12px;
  text-decoration: none;
  cursor: pointer;
  margin: 0;
  border: 0;
  position: relative;
  transition: filter .2s ease, box-shadow .2s ease;
}

.card-topper h2 {
  color: #fff;
  font-size: 26px;
  font-weight: 400;
  text-align: center;
  margin: 0;
}

.card-media {
  display: none;
  background: var(--img) center / cover no-repeat;
  aspect-ratio: 9 / 5;
  text-decoration: none;
  position: relative;
  margin: 0;
  border: 0;
  transform: translateZ(0);
  transition: transform .35s ease;
}

.card-link {
  position: absolute;
  inset: 0;
  display: block;
  text-indent: -9999px;
}

.card:hover .card-media,
.card:focus-within .card-media {
  transform: scale(1.02);
}

.card:hover .card-topper,
.card:focus-within .card-topper {
  filter: brightness(1.06);
}

.card-topper:focus-visible,
.card-media:focus-visible {
  outline: 2px solid rgba(0,0,0,.35);
  outline-offset: 2px;
}

@media (max-width: 800px) {
  .cards {
    grid-template-columns: 1fr;
    gap: 20px; 
  }
  .card-media { display: block; }
}

@media (min-width: 801px) and (max-width: 1319px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .card-media { display: block; }
  .card { transition: box-shadow .2s ease; }
  .card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.12); }
}

@media (min-width: 1320px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .card-media { display: block; }
  .card { transition: box-shadow .2s ease; }
  .card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.12); }
}

@media (max-width: 1319px) {
  .card-topper h2 { font-size: 24px; }
}


/* Lower Card Button width to match grid above */

.lower-card-button a.fl-button{
  display:block;                                  
  width: calc((100% - (2 * 40px)) / 3); 
  margin: 0 auto;
}

@media (max-width: 1280px) {
  .lower-card-button a.fl-button {
    width: 100%;
    max-width: 360px !important;
  }
}


/* --- 50 Seal Row --- */

.footer-dots img{
  display:block;
  transform: translateY(90%);     
}


/* --- Footer --- */

.facebook-link img{
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.facebook-link:hover img{
  opacity:0.7;          /* lighter look */
  transform:scale(1.03); /* slightly larger */
}


/* --- Mobile Menu --- */

@media (max-width: 800px) {
	.focus-mobile-menu .fl-menu .menu {
    	padding: 10px 0;
    	margin-top: 20px;
	}
}

.focus-mobile-menu .fl-menu-mobile-toggle{
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
  width: 36px;
  height: 20px; 
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  color: #a6a6a6;
}

.focus-mobile-menu .fl-menu-mobile-toggle .svg-container,
.focus-mobile-menu .fl-menu-mobile-toggle .hamburger-menu{
  display: none !important;
}

.focus-mobile-menu .fl-menu-mobile-toggle{
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 100% 2px; 
  background-position: left 0 top 9px;
  transition: background-size .3s ease, color .2s ease;
}

.focus-mobile-menu .fl-menu-mobile-toggle::before,
.focus-mobile-menu .fl-menu-mobile-toggle::after{
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform .3s ease, top .3s ease, color .2s ease;
}

.focus-mobile-menu .fl-menu-mobile-toggle::before{ top: 0; }
.focus-mobile-menu .fl-menu-mobile-toggle::after{  top: 18px; } 

.focus-mobile-menu .fl-menu-mobile-toggle:hover,
.focus-mobile-menu .fl-menu-mobile-toggle.fl-active{
  color: #4d4d4d;
}

.focus-mobile-menu .fl-menu-mobile-toggle.fl-active{
  background-size: 0 2px;
}

.focus-mobile-menu .fl-menu-mobile-toggle.fl-active::before{
  top: 9px;
  transform: rotate(45deg);
}

.focus-mobile-menu .fl-menu-mobile-toggle.fl-active::after{
  top: 9px;
  transform: rotate(-45deg);
}


/* --- Program Panels --- */

.program-panel {
  display: none;
  background: #ffffff;
}

.fl-builder-edit .program-panel {
  display: block !important;
}

.program-accordion .fl-button {
  display: block;
  text-align: left;
}

.program-accordion .fl-button:focus-visible {
  outline: 3px solid #2f6f2f;
  outline-offset: 2px;
}


/* --- Fitness Wellness Page --- */

.fitness-wellness .program-toggle[aria-expanded="true"] a.fl-button {
    background-color: #ffffff !important;
    border-style: solid;
    border-width: 2px !important;
    border-color: #66914b !important;
}

.fitness-wellness .program-toggle[aria-expanded="true"] a.fl-button .fl-button-text {
    font-weight: 700;
}

.fitness-wellness .program-toggle a.fl-button:hover {
    border-color: #66914b;
}

.fitness-wellness .program-toggle a.fl-button:focus-visible {
    outline: 3px solid #66914b;
    outline-offset: 2px;
}


/* --- Nutrition Lifestyle Page --- */

.nutrition-lifestyle .program-toggle[aria-expanded="true"] a.fl-button {
    background-color: #ffffff !important;
    border-style: solid;
    border-width: 2px !important;
    border-color: #73B843 !important;
}

.nutrition-lifestyle .program-toggle[aria-expanded="true"] a.fl-button .fl-button-text {
    color: #73B843 !important;
    font-weight: 700;
}

.nutrition-lifestyle .program-toggle a.fl-button:hover {
    border-color: #73B843;
}

.nutrition-lifestyle .program-toggle a.fl-button:focus-visible {
    outline: 3px solid #73B843;
    outline-offset: 2px;
}


/* --- Dance Tumbling Cheer Page --- */

.dance-tumbling-cheer .program-toggle[aria-expanded="true"] a.fl-button {
    background-color: #ffffff !important;
    border-style: solid;
    border-width: 2px !important;
    border-color: #92278f !important;
}

.dance-tumbling-cheer .program-toggle[aria-expanded="true"] a.fl-button .fl-button-text {
    color: #92278f !important;
    font-weight: 700;
}

.dance-tumbling-cheer .program-toggle a.fl-button:hover {
    border-color: #92278f;
}

.dance-tumbling-cheer .program-toggle a.fl-button:focus-visible {
    outline: 3px solid #92278f;
    outline-offset: 2px;
}


/* --- Menu --- */

.menu > li.current-menu-item > a[href*="#"] {
  color: inherit;
}


/* --- Misc --- */

a[href^="tel:"] {
  white-space: nowrap;
}


/* --- Jude --- */