.faq-section { max-width: 900px; margin: 2rem auto; padding: 0 1rem; }
.faq-item { border-bottom: 1px solid #e6e6e6; margin-bottom: 12px; }
.faq-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  padding: 1rem 0;
  text-align: left;
  cursor: pointer;
  font: inherit;
  background: var(--white-light);
}
.faq-title { font-weight: 600; font-size: 1.05rem; }
.faq-icon {
  display: inline-block;
  transition: transform .28s cubic-bezier(.2,.9,.3,1);
  transform-origin: center;
  margin-left: 12px;
  font-size: 2rem;
}

/* content hidden by max-height */
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .34s cubic-bezier(.2,.9,.3,1), opacity .25s ease;
  opacity: 0;
  padding-bottom: 0;
padding: 8px;
}
.faq-content p { margin: .6rem 0 1rem; color: var(--white); line-height:1.5; font-weight: 500;}

/* active state */
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-item.open .faq-content { opacity: 1; padding-bottom: 1rem; }

/* small screens */
@media (max-width:600px){
  .faq-title { font-size: 1rem; }
}
.open{
    background-color: var(--sec);
}
.faq-header[aria-expanded="true"]{
    background-color: var(--sec) !important;
    color: var(--white) !important;
}
.faq-header[aria-expanded="true"] .faq-title{
 color: var(--white) !important;
}
/* training */
.training .box{
    aspect-ratio: 1;
    position: relative;
transition: .4s all ease-in-out;
}
.training .box::before{
    content: '';
    background-color: rgba(0, 0, 0, 0.322);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
}
.join-btn{
    transition:  .2s all ease-in-out;
    height: 0px;
    overflow: hidden;
}
.training .box:hover::before{
    background-color: rgba(0, 0, 0, 0.623);
}
.training .box:hover .join-btn{
height: 45px;
}
.num{
    width: 60px !important;
    height: 60px;
    border-radius: 50%;
    background-color: var(--sec);

font-weight: bold !important;
font-size: 1.4rem;
font-style: italic;
box-shadow: 0 0 34px 30px white;
}
.choose-box{
    position: relative;
}
.choose-box::before{
    content: '';
    position: absolute;
    top: 65px;
    left: 17px;
    height: 85%;
    width: 5px;
    background-color: var(--sec);
    z-index: -3;
}
.academy-footer{
    background-image:url(../images/academy-footer.webp) ;
}