/* 파일럿 집합연수 신청 */

/* 헤더 메뉴 항목 */
.headerMenu1 {
  color: var(--mainColor);
}

.headerMenu1 > span {
  color: var(--mainColor) !important;
  border-bottom: 3px solid var(--mainColor);
}
.headerMenu1:hover > span {
  color: var(--mainColor) !important;
  border-bottom: 3px solid var(--mainColor);
}

.headerMenu1 .subMenuLi:nth-of-type(2) > .subMenuDiv {
  background-color: var(--mainColor);
  color:var(--whiteColor);
}
.headerMenu1 .subMenuLi:nth-of-type(2) .subMenuUl > li:nth-child(2) > a {
  color: var(--mainColor);
}

/* 메뉴 항목 */
.asideMenu > li:nth-child(2) > span {
  background-color: var(--anColor);
}

.asideMenu > li:nth-child(2) > .asideSubMenu > li:nth-child(2) > a {
  color: var(--mainColor);
}
.asideMenu > li:nth-child(2) > .asideSubMenu > li:nth-child(2) > a::before {
  color: var(--mainColor);
}


/* 모바일 사이드 메뉴 */
.sideNav > li:first-child .sideSubNav {
  display: flex;
}
.sideNav > li:first-child .sideSubNav > .sideSubNavLi:nth-child(2) .sideInnerNav {
  display: flex;
}
.sideNav > li:first-child .sideSubNav > .sideSubNavLi:nth-child(2) > .sideSubNavTop {
  background-color: var(--subColor);
  color: var(--mainColor);
}
.sideNav > li:first-child .sideSubNav > .sideSubNavLi:nth-child(2) .sideInnerNav > li:nth-child(2) > a {
  color: var(--mainColor);
}

.pageContents {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}

.listPoster {
  width: 100%;
  height: 700px;
  display: flex;
  justify-content: center;
  overflow-y: scroll;
}
.listPoster::-webkit-scrollbar {
  background-color: #d6d6d6;
  width: 10px;
}
.listPoster::-webkit-scrollbar-thumb {
  background-color: #7426D5;
  border-radius: 50px;
}

.listPoster img {
  width: 70%;
  height: fit-content;
}

/* 버튼 */
.pageBottomBtns {
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100px;
  background-color: var(--whiteColor);
  bottom: -90px;
  background-color: var(--backColor);
}

.appliBtns {
  width: 200px;
  height: 45px;
  font-size: 15px;
  font-weight: 700;
}

/* 자세히보기 버튼 */
.viewMoreIcon {
  width: 24px;
  height: 24px;
  margin: 0 0 0 3px;
}
.viewMoreBtn {
  width: 200px;
  height: 45px;
  background-color: white;
  border: 1px dashed var(--mainColor);
  color: var(--mainColor);
  font-weight: 600;
  font-size: 15px;
}
.viewMoreBtn:hover {
  background-color: var(--subColor);
}

/* 파일럿 과정 신청 팝업 */
.popupArt {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  z-index: 999;
  display: none;
}

.popupBox {
  width: 50%;
  padding: 0 0 2% 0;
}

.popupHeader {
  flex-direction: row;
  justify-content: end;
}

.popupContents {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 0 20px 0;
}

.pilotTop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.pilotTit {
  font-size: 20px;
  color: var(--mainColor);
  font-weight: 600;
}
.pilotSubTxt {
  font-size: 14px;
  color: var(--txtGColor);
  font-weight: 500;
}


.pilotBtns {
  width: 80%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
} 
.pilotBtns > a {
  width: 100%;
  height: 240px;
  background-color: var(--anColor);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.pilotBtns > a:hover {
  background-color: var(--subColor);
}

.pilotImgs {
  width: 60%;
}

.pilotBtn {
  width: 80%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 50px;
  font-weight: 700;
  color: var(--mainColor);
}

/* 반응형 */
@media screen and (max-width: 1440px) {
  .popupBox {
    width: 60%;
  }
}

@media screen and (max-width: 1200px) {
  .pilotBtns > a {
    height: 180px;
  }
  .pilotImgs {
    width: 50%;
  }
  .pilotBtn {
    height: 35px;
    font-size: 14px;
  }

  .appliBtns {
    width: 180px;
    height: 40px;
    font-size: 15px;
  }
  .downLoadBtn {
    width: 180px;
    height: 40px;
    font-size: 15px;
  }
  .viewMoreBtn {
    width: 180px;
    height: 40px;
    font-size: 15px;
  }
}

@media screen and (max-width: 1000px) {
  .popupBox {
    width: 80%;
  }
  

  .pilotImgs {
    width: 100px;
  }

  .pilotTit {
    font-size: 17px;
  }
  .pilotSubTxt {
    font-size: 13px;
  }
  .popupContents {
    gap: 20px;
  }
}

@media screen and (max-width: 800px) {
  .pilotBtns {
    grid-template-columns: 1fr;
  }

  .appliBtns {
    width: 160px;
    font-size: 13px;
  }
  .downLoadBtn {
    width: 160px;
    font-size: 13px;
  }
  .viewMoreBtn {
    width: 160px;
    font-size: 13px;
  }
}

@media screen and (max-width: 600px) {
  .listPoster {
    height: 400px;
  }

  .appliBtns {
    width: 130px;
    height: 40px;
    font-size: 13px;
    word-break: keep-all;
    text-align: center;
  }
  .downLoadBtn {
    height: 40px;
    font-size: 13px;
    word-break: keep-all;
    text-align: center;
  }
  .viewMoreBtn {
    width: 130px;
    height: 40px;
    font-size: 13px;
    word-break: keep-all;
    text-align: center;
  }
  .pageBottomBtns {
    min-height: 80px;
    bottom: -80px;
    padding: 0 10px;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    gap: 5px;
  }
  .viewMoreIcon {
    display: none;
  }

  .listPoster::-webkit-scrollbar {
    width: 6px;
  }

  .pilotImgs {
    width: 60px;
  }
  .pilotBtns > a {
    height: 120px;
  }
  .pilotBtn {
    height: 30px;
  }
}

@media screen and (max-width: 500px) {
  .listPoster {
    height: 350px;
  }
  .listPoster img {
    width: 90%;
  }
  .pageBottomBtns {
    height: 60px;
    bottom: -60px;
  }

}

