/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
#hero {
  width: 100%;
  background: url("/assets/images/home/hero.jpg") top center no-repeat fixed;
  background-size: cover;
  background-position: 50% -5vh;
  height: 65vh;
  min-height: 430px;
  clip-path: url(#wavy-clip-path);
}
@media (hover: none) {
   #hero {
     background-attachment: initial;
   }
}
#hero > div {
  padding: 1%;
  margin: 20%;
  border-radius: 30px;
  background-color: rgb(255, 255, 255, 0.5);
}
#hero h1 {
  margin: 0;
  font-size: 50px;
  font-weight: 700;
  line-height: 48px;
  color: var(--fs-color-primary);
  text-shadow: 4px 4px 8px rgb(0,0,0), 0px 0px 20px white;
  font-family: "Roboto", sans-serif;
}
#hero h2 span {
  color: var(--fs-color-primary);
}
#hero h2 {
  color: rgba(0, 0, 0);
  text-shadow: 4px 4px 8px rgb(0,0,0), 0px 0px 20px white;
  margin: 15px 0 0 0;
  font-size: 24px;
  padding: 0 calc(10%);
}
@media (max-width: 420px) {
  #hero h1 {
    font-size: 46px;
    line-height: 44px;
  }
  #hero h2 {
    font-size: 22px;
    line-height: 20px;
  }
}
@media (max-width: 300px) {
  #hero {
    background: none;
    height: 100%;
    padding-top: 100px;
    clip-path: none;
  }
  #hero > div {
    padding: 0;      
    margin: 0;
    background: none;
  }
  #hero h1 {
    font-size: 30px;
    line-height: 28px;
  }    
  #hero h2 {
    font-size: 18px;
    line-height: 18px;
    padding: 0;
  }
}    

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
.club-intro-copy span {
  color: var(--fs-color-primary);
}
.club-intro-copy h1 {
  font-size: 36px;
}
.club-intro-copy h2 {
  font-size: 18px;
}

/*--------------------------------------------------------------
# cta
--------------------------------------------------------------*/
.cta {
  margin: 0;
  background: black;
}
.cta h5 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
.cta .cta-btn {
  background-color: rgba(255, 255, 255, 0.2); 
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}
.cta .cta-btn:hover {
  background: var(--fs-color-primary);
  border-color: var(--fs-color-primary);
}
.cta .carousel-item {
    height: 30vh;
    min-height: 300px;
}
#ctaCarousel .cta-slide-one {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("assets/images/home/C172S-panel.jpg") no-repeat fixed center center;
  background-size: cover;
}
#ctaCarousel .cta-slide-two {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("assets/images/home/CessnaFlightTraining.png") no-repeat fixed center center;
  background-size: cover;
}
#ctaCarousel .cta-slide-three {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("assets/images/home/office.jpg") no-repeat fixed center center;
  background-size: cover;    
}
@media (hover: none) {
   #ctaCarousel .carousel-item {
     background-attachment: initial;
   }
}
.carousel-caption {
  position: absolute;
  bottom: 1.25rem;
  left: 15%;
  right: 15%;
  z-index: 10;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: white;
}
