/*--------------------------------------------------------------
# Start
--------------------------------------------------------------*/
#hero {
  width: 100%;
  background: url("/assets/images/start/hero.jpg") top center no-repeat fixed;
  background-size: cover;
  background-position: 50% -27vh;
  height: 50vh;
  min-height: 300px;
  clip-path: url(#wavy-clip-path);
}
@media (hover: none) {
   #hero {
     background-attachment: initial;
     background-position: 50% 0;
   }
}
.arrow-between-cards {
  position: absolute;
  width: 100px;
  z-index: 10; /* Ensure it's above the cards */
  top: 30%;
  right: 0;
  transform: translate(50px);
}
@media (max-width: 992px) {
  .arrow-between-cards {
    display: none;
  }
}
.blockquote {
  font-family: "Edu NSW ACT Cursive", cursive;
}
.dramatic {
  color: var(--fs-color-primary);
  font-weight: 500;
}
.take-off {
  display: inline-block;
  font-size: 50px;
  font-weight: bold;
  font-style: italic;
  color: #333;
    
  /* The "Take-off" Transformation */
  transform: perspective(500px) rotateX(20px) skewX(-15deg) scale(1.1);
    
  /* Shadow trail to simulate speed/exhaust */
  text-shadow: 
    -2px 2px 0px #aaa,
    -10px 10px 15px rgba(0,0,0,0.2),
    -20px 20px 30px rgba(0,0,0,0.1);
      
  /* Positioning it upward */
  margin-bottom: 50px;
  position: relative;
  top: -20px;
}
.accordion {
  --bs-accordion-btn-bg: #ffc451;
  --bs-accordion-btn-color: #444444;
  --bs-accordion-active-bg: #ffd584;
  --bs-accordion-active-color: #444444;
}
.accordion h2 {
  font-weight: 700;
  font-size: 18px;
  color: #151515;
}
.accordion i.bi {
  font-size: 24px;
  float: left;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.letter-spacing-2 {
  letter-spacing: 2px;
}
.card:hover {
  transform: scale(1.051);
  border: 3px solid var(--bs-primary);
}
.card-number {
  position: absolute;
  width: 3.5rem;
  height: 3.5rem;    
  background-color: var(--bs-info);
  border: 3px solid var(--bs-primary);    
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.card-number h5 {
  font-size: 1.8rem;
  margin: 0;
}
.card-title {
  padding: 0 1rem 0 2rem;
  font-weight: 700;
}
.i-pilot {
  display: inline-block;
  width: calc(1.325rem + .9vw);
  height: calc(1.325rem + .9vw);;
  background-image: url('/assets/images/start/pilot.svg');
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: -.125em;
}

