/* 수업형 참여기관 신청 */

/* 헤더 메뉴 항목 */
.headerMenu3 {
  color: var(--mainColor);
}

.headerMenu3 > span {
  color: var(--mainColor) !important;
  border-bottom: 3px solid var(--mainColor);
}
.headerMenu3:hover > span {
  color: var(--mainColor) !important;
  border-bottom: 3px solid var(--mainColor);
}

.headerMenu3 .subMenuLi:first-of-type > .subMenuDiv {
  background-color: var(--mainColor);
  color:var(--whiteColor);
}
.headerMenu3 .subMenuLi:first-of-type .subMenuUl > li:first-child > a {
  color: var(--mainColor);
}

/* 메뉴 항목 */
.asideMenu > li:first-child > span {
  background-color: var(--anColor);
}

.asideMenu > li:first-child > .asideSubMenu > li:first-child > a {
  color: var(--mainColor);
}
.asideMenu > li:first-child > .asideSubMenu > li:first-child > a::before {
  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;
}

.downLoadBtn {
  width: 200px;
  height: 45px;
  font-size: 15px;
  background-color: var(--whiteColor);
  border: 1px solid var(--mainColor);
  color: var(--mainColor);
  font-weight: 700;
}

.downLoadBtn:hover {
  background-color: var(--subColor);
}


/* 모바일 사이드 메뉴 */
.sideNav > li:nth-child(3) .sideSubNav {
  display: flex;
}
.sideNav > li:nth-child(3) .sideSubNav > .sideSubNavLi:first-child .sideInnerNav {
  display: flex;
}
.sideNav > li:nth-child(3) .sideSubNav > .sideSubNavLi:first-child > .sideSubNavTop {
  background-color: var(--subColor);
  color: var(--mainColor);
}
.sideNav > li:nth-child(3) .sideSubNav > .sideSubNavLi:first-child .sideInnerNav > li:first-child > a {
  color: var(--mainColor);
}

/* 반응형 */
@media screen and (max-width: 1200px) {
  .appliBtns {
    width: 180px;
    height: 40px;
    font-size: 14px;
  }
  .downLoadBtn {
    width: 180px;
    height: 40px;
    font-size: 14px;
  }
}

@media screen and (max-width: 800px) {
  .appliBtns {
    width: 160px;
    font-size: 13px;
  }
  .downLoadBtn {
    width: 160px;
    font-size: 13px;
  }
}

@media screen and (max-width: 600px) {
  .listPoster {
    height: 400px;
  }

  .appliBtns {
    width: 50%;
    height: 35px;
    font-size: 13px;
  }
  .downLoadBtn {
    width: 50%;
    height: 35px;
    font-size: 13px;
  }
  .pageBottomBtns {
    height: 80px;
    bottom: -80px;
    padding: 0 15px;
  }

  .listPoster::-webkit-scrollbar {
    width: 6px;
  }
}

@media screen and (max-width: 500px) {
  .listPoster {
    height: 350px;
  }
  .listPoster img {
    width: 90%;
  }
  .pageBottomBtns {
    height: 60px;
    bottom: -60px;
  }


}

